Class: ZendeskAPI::Tag

Inherits:
DataResource show all
Includes:
Destroy, Update
Defined in:
lib/zendesk_api/resources.rb

Defined Under Namespace

Modules: Update

Instance Method Summary collapse

Constructor Details

This class inherits a constructor from ZendeskAPI::Data

Dynamic Method Handling

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

Instance Method Details

#attributes_for_saveObject

[View source]

74
75
76
# File 'lib/zendesk_api/resources.rb', line 74

def attributes_for_save
  { self.class.resource_name => [id] }
end

#changed?Boolean

Returns:

  • (Boolean)
[View source]

46
47
48
# File 'lib/zendesk_api/resources.rb', line 46

def changed?
  true
end

#clear_associationsObject Originally defined in module Save

Removes all cached associations

#destroy(&block) ⇒ Object Originally defined in module Destroy

Destroys, returning false on error.

#destroy!Object

[View source]

50
51
52
53
54
# File 'lib/zendesk_api/resources.rb', line 50

def destroy!
  super do |req|
    req.body = attributes_for_save
  end
end

#destroyed?Boolean Originally defined in module Destroy

Has this object been deleted?

Returns:

  • (Boolean)

#handle_response(response) ⇒ Object Originally defined in module ResponseHandler

#path(opts = {}) ⇒ Object

[View source]

41
42
43
44
# File 'lib/zendesk_api/resources.rb', line 41

def path(opts = {})
  raise "tags must have parent resource" unless association.options.parent
  super(opts.merge(:with_parent => true, :with_id => false))
end

#save(options = {}, &block) ⇒ Object Originally defined in module Save

Saves, returning false if it fails and attaching the errors

#save!(options = {}) ⇒ Boolean Originally defined in module Save

If this resource hasn't been deleted, then create or save it. Executes a POST if it is a Data#new_record?, otherwise a PUT. Merges returned attributes on success.

Returns:

  • (Boolean)

    Success?

#save_associationsObject Originally defined in module Save

Saves associations Takes into account inlining, collections, and id setting on the parent resource.