Method: GoodData::Schedule#update_params
- Defined in:
- lib/gooddata/models/schedule.rb
#update_params(params_to_merge) ⇒ GoodData::Schedule
Updates params by merging the current params with new ones
352 353 354 355 356 357 358 |
# File 'lib/gooddata/models/schedule.rb', line 352 def update_params(params_to_merge) params_to_merge.each do |k, v| set_parameter(k, v) end @dirty = true self end |