Class: Octobat::DocumentTemplate
- Inherits:
-
APIResource
- Object
- OctobatObject
- APIResource
- Octobat::DocumentTemplate
- Extended by:
- APIOperations::List
- Includes:
- APIOperations::Create, APIOperations::Update
- Defined in:
- lib/octobat/document_template.rb
Instance Attribute Summary
Attributes inherited from OctobatObject
Instance Method Summary collapse
- #activate(params = {}, opts = {}) ⇒ Object
- #delete(params = {}, opts = {}) ⇒ Object
- #duplicate(params = {}, opts = {}) ⇒ Object
- #preview(params = {}, opts = {}) ⇒ Object
Methods included from APIOperations::List
Methods included from APIOperations::Update
#save, #serialize_metadata, #serialize_params
Methods included from APIOperations::Create
Methods inherited from APIResource
class_name, #refresh, retrieve, url, #url
Methods inherited from OctobatObject
#[], #[]=, #_dump, _load, #as_json, construct_from, #each, #initialize, #inspect, #keys, #refresh_from, #respond_to?, #to_hash, #to_json, #to_s, #values
Constructor Details
This class inherits a constructor from Octobat::OctobatObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Octobat::OctobatObject
Instance Method Details
#activate(params = {}, opts = {}) ⇒ Object
12 13 14 15 |
# File 'lib/octobat/document_template.rb', line 12 def activate(params = {}, opts = {}) response, api_key = Octobat.request(:patch, activate_url, @api_key, params, opts) refresh_from(response, api_key) end |
#delete(params = {}, opts = {}) ⇒ Object
17 18 19 20 |
# File 'lib/octobat/document_template.rb', line 17 def delete(params = {}, opts = {}) response, api_key = Octobat.request(:delete, url, @api_key, params, opts) refresh_from(response, api_key) end |