Class: ChargeBee::Purchase

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

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.



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

def created_at
  @created_at
end

#customer_idObject

Returns the value of attribute customer_id.



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

def customer_id
  @customer_id
end

#idObject

Returns the value of attribute id.



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

def id
  @id
end

#invoice_idsObject

Returns the value of attribute invoice_ids.



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

def invoice_ids
  @invoice_ids
end

#modified_atObject

Returns the value of attribute modified_at.



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

def modified_at
  @modified_at
end

#subscription_idsObject

Returns the value of attribute subscription_ids.



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

def subscription_ids
  @subscription_ids
end

Class Method Details

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

OPERATIONS




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

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

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



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

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