Class: ChargeBee::Installment

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

Instance Attribute Summary collapse

Class Method Summary collapse

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

#amountObject

Returns the value of attribute amount.



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

def amount
  @amount
end

#created_atObject

Returns the value of attribute created_at.



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

def created_at
  @created_at
end

#dateObject

Returns the value of attribute date.



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

def date
  @date
end

#idObject

Returns the value of attribute id.



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

def id
  @id
end

#invoice_idObject

Returns the value of attribute invoice_id.



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

def invoice_id
  @invoice_id
end

#resource_versionObject

Returns the value of attribute resource_version.



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

def resource_version
  @resource_version
end

#statusObject

Returns the value of attribute status.



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

def status
  @status
end

#updated_atObject

Returns the value of attribute updated_at.



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

def updated_at
  @updated_at
end

Class Method Details

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



13
14
15
# File 'lib/chargebee/models/installment.rb', line 13

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

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

OPERATIONS




9
10
11
# File 'lib/chargebee/models/installment.rb', line 9

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