Class: ChargeBee::Feature
- Defined in:
- lib/chargebee/models/feature.rb
Defined Under Namespace
Classes: Level
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#description ⇒ Object
Returns the value of attribute description.
-
#id ⇒ Object
Returns the value of attribute id.
-
#levels ⇒ Object
Returns the value of attribute levels.
-
#name ⇒ Object
Returns the value of attribute name.
-
#resource_version ⇒ Object
Returns the value of attribute resource_version.
-
#status ⇒ Object
Returns the value of attribute status.
-
#type ⇒ Object
Returns the value of attribute type.
-
#unit ⇒ Object
Returns the value of attribute unit.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
Class Method Summary collapse
- .activate(id, env = nil, headers = {}) ⇒ Object
- .archive(id, env = nil, headers = {}) ⇒ Object
- .create(params, env = nil, headers = {}) ⇒ Object
- .delete(id, env = nil, headers = {}) ⇒ Object
-
.list(params = {}, env = nil, headers = {}) ⇒ Object
OPERATIONS ———–.
- .reactivate(id, env = nil, headers = {}) ⇒ Object
- .retrieve(id, env = nil, headers = {}) ⇒ Object
- .update(id, params = {}, env = nil, headers = {}) ⇒ Object
Methods inherited from Model
construct, #init_dependant, #init_dependant_list, #initialize, #inspect, #load, #method_missing, #replace_white_space_with_underscore, #to_s, uri_path
Constructor Details
This class inherits a constructor from ChargeBee::Model
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ChargeBee::Model
Instance Attribute Details
#created_at ⇒ Object
Returns the value of attribute created_at.
8 9 10 |
# File 'lib/chargebee/models/feature.rb', line 8 def created_at @created_at end |
#description ⇒ Object
Returns the value of attribute description.
8 9 10 |
# File 'lib/chargebee/models/feature.rb', line 8 def description @description end |
#id ⇒ Object
Returns the value of attribute id.
8 9 10 |
# File 'lib/chargebee/models/feature.rb', line 8 def id @id end |
#levels ⇒ Object
Returns the value of attribute levels.
8 9 10 |
# File 'lib/chargebee/models/feature.rb', line 8 def levels @levels end |
#name ⇒ Object
Returns the value of attribute name.
8 9 10 |
# File 'lib/chargebee/models/feature.rb', line 8 def name @name end |
#resource_version ⇒ Object
Returns the value of attribute resource_version.
8 9 10 |
# File 'lib/chargebee/models/feature.rb', line 8 def resource_version @resource_version end |
#status ⇒ Object
Returns the value of attribute status.
8 9 10 |
# File 'lib/chargebee/models/feature.rb', line 8 def status @status end |
#type ⇒ Object
Returns the value of attribute type.
8 9 10 |
# File 'lib/chargebee/models/feature.rb', line 8 def type @type end |
#unit ⇒ Object
Returns the value of attribute unit.
8 9 10 |
# File 'lib/chargebee/models/feature.rb', line 8 def unit @unit end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
8 9 10 |
# File 'lib/chargebee/models/feature.rb', line 8 def updated_at @updated_at end |
Class Method Details
.activate(id, env = nil, headers = {}) ⇒ Object
34 35 36 |
# File 'lib/chargebee/models/feature.rb', line 34 def self.activate(id, env=nil, headers={}) Request.send('post', uri_path("features",id.to_s,"activate_command"), {}, env, headers) end |
.archive(id, env = nil, headers = {}) ⇒ Object
38 39 40 |
# File 'lib/chargebee/models/feature.rb', line 38 def self.archive(id, env=nil, headers={}) Request.send('post', uri_path("features",id.to_s,"archive_command"), {}, env, headers) end |
.create(params, env = nil, headers = {}) ⇒ Object
18 19 20 |
# File 'lib/chargebee/models/feature.rb', line 18 def self.create(params, env=nil, headers={}) Request.send('post', uri_path("features"), params, env, headers) end |
.delete(id, env = nil, headers = {}) ⇒ Object
30 31 32 |
# File 'lib/chargebee/models/feature.rb', line 30 def self.delete(id, env=nil, headers={}) Request.send('post', uri_path("features",id.to_s,"delete"), {}, env, headers) end |
.list(params = {}, env = nil, headers = {}) ⇒ Object
OPERATIONS
14 15 16 |
# File 'lib/chargebee/models/feature.rb', line 14 def self.list(params={}, env=nil, headers={}) Request.send_list_request('get', uri_path("features"), params, env, headers) end |
.reactivate(id, env = nil, headers = {}) ⇒ Object
42 43 44 |
# File 'lib/chargebee/models/feature.rb', line 42 def self.reactivate(id, env=nil, headers={}) Request.send('post', uri_path("features",id.to_s,"reactivate_command"), {}, env, headers) end |