Class: Paid::PlanItem
- Inherits:
-
APIResource
- Object
- APIResource
- Paid::PlanItem
- Defined in:
- lib/paid/plan_item.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#object ⇒ Object
readonly
Returns the value of attribute object.
-
#plan ⇒ Object
Returns the value of attribute plan.
-
#product ⇒ Object
Returns the value of attribute product.
Attributes inherited from APIResource
Class Method Summary collapse
- .all(params = {}, headers = {}) ⇒ Object
- .create(params = {}, headers = {}) ⇒ Object
- .retrieve(id, params = {}, headers = {}) ⇒ Object
Instance Method Summary collapse
Methods inherited from APIResource
add_api_attribute, api_attribute_names, #api_attributes, api_subclass_fetch, api_subclasses, #changed_api_attributes, #clear_api_attributes, determine_api_attribute_value, #determine_api_attribute_value, #initialize, #inspect, #inspect_api_attributes, #inspect_nested, #refresh_from, register_api_subclass, #to_json
Constructor Details
This class inherits a constructor from Paid::APIResource
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
3 4 5 |
# File 'lib/paid/plan_item.rb', line 3 def id @id end |
#object ⇒ Object (readonly)
Returns the value of attribute object.
4 5 6 |
# File 'lib/paid/plan_item.rb', line 4 def object @object end |
#plan ⇒ Object
Returns the value of attribute plan.
5 6 7 |
# File 'lib/paid/plan_item.rb', line 5 def plan @plan end |
#product ⇒ Object
Returns the value of attribute product.
6 7 8 |
# File 'lib/paid/plan_item.rb', line 6 def product @product end |
Class Method Details
.all(params = {}, headers = {}) ⇒ Object
8 9 10 11 |
# File 'lib/paid/plan_item.rb', line 8 def self.all(params={}, headers={}) method = APIMethod.new(:get, "/plan_items", params, headers, self) APIList.new(self, method.execute, method) end |
.create(params = {}, headers = {}) ⇒ Object
21 22 23 24 |
# File 'lib/paid/plan_item.rb', line 21 def self.create(params={}, headers={}) method = APIMethod.new(:post, "/plan_items", params, headers, self) self.new(method.execute, method) end |
.retrieve(id, params = {}, headers = {}) ⇒ Object
13 14 15 16 17 18 19 |
# File 'lib/paid/plan_item.rb', line 13 def self.retrieve(id, params={}, headers={}) params = ParamsBuilder.merge(params, { :id => id }) method = APIMethod.new(:get, "/plan_items/:id", params, headers, self) self.new(method.execute, method) end |
Instance Method Details
#refresh(params = {}, headers = {}) ⇒ Object
26 27 28 29 |
# File 'lib/paid/plan_item.rb', line 26 def refresh(params={}, headers={}) method = APIMethod.new(:get, "/plan_items/:id", params, headers, self) self.refresh_from(method.execute, method) end |
#save(params = {}, headers = {}) ⇒ Object
31 32 33 34 35 |
# File 'lib/paid/plan_item.rb', line 31 def save(params={}, headers={}) params = ParamsBuilder.merge(params, changed_api_attributes) method = APIMethod.new(:put, "/plan_items/:id", params, headers, self) self.refresh_from(method.execute, method) end |