Class: ZendeskAPI::Tag
- Inherits:
-
DataResource
- Object
- Data
- DataResource
- ZendeskAPI::Tag
- Defined in:
- lib/zendesk_api/resources.rb
Defined Under Namespace
Modules: Update
Instance Method Summary collapse
- #attributes_for_save ⇒ Object
- #changed? ⇒ Boolean
-
#clear_associations ⇒ Object
included
from Save
Removes all cached associations.
-
#destroy(&block) ⇒ Object
included
from Destroy
Destroys, returning false on error.
- #destroy! ⇒ Object
-
#destroyed? ⇒ Boolean
included
from Destroy
Has this object been deleted?.
- #handle_response(response) ⇒ Object included from ResponseHandler
- #path(opts = {}) ⇒ Object
-
#save(options = {}, &block) ⇒ Object
included
from Save
Saves, returning false if it fails and attaching the errors.
-
#save!(options = {}) ⇒ Boolean
included
from Save
If this resource hasn't been deleted, then create or save it.
-
#save_associations ⇒ Object
included
from Save
Saves associations Takes into account inlining, collections, and id setting on the parent resource.
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_save ⇒ Object
[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
46 47 48 |
# File 'lib/zendesk_api/resources.rb', line 46 def changed? true end |
#clear_associations ⇒ Object 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?
#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..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.
#save_associations ⇒ Object Originally defined in module Save
Saves associations Takes into account inlining, collections, and id setting on the parent resource.