Class: ChargeBee::Addon

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

Instance Attribute Summary collapse

Class Method Summary collapse

Methods inherited from Model

construct, #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

#archived_atObject

Returns the value of attribute archived_at.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def archived_at
  @archived_at
end

#charge_typeObject

Returns the value of attribute charge_type.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def charge_type
  @charge_type
end

#descriptionObject

Returns the value of attribute description.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def description
  @description
end

#enabled_in_portalObject

Returns the value of attribute enabled_in_portal.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def enabled_in_portal
  @enabled_in_portal
end

#idObject

Returns the value of attribute id.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def id
  @id
end

#invoice_nameObject

Returns the value of attribute invoice_name.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def invoice_name
  @invoice_name
end

#invoice_notesObject

Returns the value of attribute invoice_notes.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def invoice_notes
  @invoice_notes
end

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def name
  @name
end

#periodObject

Returns the value of attribute period.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def period
  @period
end

#period_unitObject

Returns the value of attribute period_unit.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def period_unit
  @period_unit
end

#priceObject

Returns the value of attribute price.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def price
  @price
end

#statusObject

Returns the value of attribute status.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def status
  @status
end

#taxableObject

Returns the value of attribute taxable.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def taxable
  @taxable
end

#typeObject

Returns the value of attribute type.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def type
  @type
end

#unitObject

Returns the value of attribute unit.



4
5
6
# File 'lib/chargebee/models/addon.rb', line 4

def unit
  @unit
end

Class Method Details

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

OPERATIONS




10
11
12
# File 'lib/chargebee/models/addon.rb', line 10

def self.create(params, env=nil, headers={})
  Request.send('post', uri_path("addons"), params, env, headers)
end

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



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

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

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



18
19
20
# File 'lib/chargebee/models/addon.rb', line 18

def self.list(params={}, env=nil, headers={})
  Request.send('get', uri_path("addons"), params, env, headers)
end

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



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

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

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



14
15
16
# File 'lib/chargebee/models/addon.rb', line 14

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