Class: ZendeskAPI::Setting

Inherits:
UpdateResource show all
Defined in:
lib/zendesk_api/resources.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client, attributes = {}) ⇒ Setting

Returns a new instance of Setting



263
264
265
266
267
268
269
270
271
# File 'lib/zendesk_api/resources.rb', line 263

def initialize(client, attributes = {})
  # Try and find the root key
  @on = (attributes.keys.map(&:to_s) - %w{association options}).first

  # Make what's inside that key the root attributes
  attributes.merge!(attributes.delete(@on))

  super
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ZendeskAPI::Data

Instance Attribute Details

#onObject (readonly)

Returns the value of attribute on



261
262
263
# File 'lib/zendesk_api/resources.rb', line 261

def on
  @on
end

Instance Method Details

#attributes_for_saveObject



281
282
283
# File 'lib/zendesk_api/resources.rb', line 281

def attributes_for_save
  { self.class.resource_name => { @on => attributes.changes } }
end

#new_record?Boolean

Returns:

  • (Boolean)


273
274
275
# File 'lib/zendesk_api/resources.rb', line 273

def new_record?
  false
end

#path(options = {}) ⇒ Object



277
278
279
# File 'lib/zendesk_api/resources.rb', line 277

def path(options = {})
  super(options.merge(:with_parent => true))
end