Class: ChargeBee::Feature

Inherits:
Model
  • Object
show all
Defined in:
lib/chargebee/models/feature.rb

Defined Under Namespace

Classes: Level

Instance Attribute Summary collapse

Class Method Summary collapse

Methods inherited from Model

construct, #init_dependant, #init_dependant_list, #initialize, #inspect, #load, #method_missing, #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_atObject

Returns the value of attribute created_at.



8
9
10
# File 'lib/chargebee/models/feature.rb', line 8

def created_at
  @created_at
end

#descriptionObject

Returns the value of attribute description.



8
9
10
# File 'lib/chargebee/models/feature.rb', line 8

def description
  @description
end

#idObject

Returns the value of attribute id.



8
9
10
# File 'lib/chargebee/models/feature.rb', line 8

def id
  @id
end

#levelsObject

Returns the value of attribute levels.



8
9
10
# File 'lib/chargebee/models/feature.rb', line 8

def levels
  @levels
end

#nameObject

Returns the value of attribute name.



8
9
10
# File 'lib/chargebee/models/feature.rb', line 8

def name
  @name
end

#resource_versionObject

Returns the value of attribute resource_version.



8
9
10
# File 'lib/chargebee/models/feature.rb', line 8

def resource_version
  @resource_version
end

#statusObject

Returns the value of attribute status.



8
9
10
# File 'lib/chargebee/models/feature.rb', line 8

def status
  @status
end

#typeObject

Returns the value of attribute type.



8
9
10
# File 'lib/chargebee/models/feature.rb', line 8

def type
  @type
end

#unitObject

Returns the value of attribute unit.



8
9
10
# File 'lib/chargebee/models/feature.rb', line 8

def unit
  @unit
end

#updated_atObject

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

.retrieve(id, env = nil, headers = {}) ⇒ Object



26
27
28
# File 'lib/chargebee/models/feature.rb', line 26

def self.retrieve(id, env=nil, headers={})
  Request.send('get', uri_path("features",id.to_s), {}, env, headers)
end

.update(id, params = {}, env = nil, headers = {}) ⇒ Object



22
23
24
# File 'lib/chargebee/models/feature.rb', line 22

def self.update(id, params={}, env=nil, headers={})
  Request.send('post', uri_path("features",id.to_s), params, env, headers)
end