Class: ChargeBee::Transaction

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

Defined Under Namespace

Classes: LinkedInvoice

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

#amountObject

Returns the value of attribute amount.



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

def amount
  @amount
end

#customer_idObject

Returns the value of attribute customer_id.



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

def customer_id
  @customer_id
end

#dateObject

Returns the value of attribute date.



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

def date
  @date
end

#descriptionObject

Returns the value of attribute description.



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

def description
  @description
end

#error_codeObject

Returns the value of attribute error_code.



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

def error_code
  @error_code
end

#error_textObject

Returns the value of attribute error_text.



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

def error_text
  @error_text
end

#gatewayObject

Returns the value of attribute gateway.



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

def gateway
  @gateway
end

#idObject

Returns the value of attribute id.



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

def id
  @id
end

#id_at_gatewayObject

Returns the value of attribute id_at_gateway.



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

def id_at_gateway
  @id_at_gateway
end

#linked_invoicesObject

Returns the value of attribute linked_invoices.



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

def linked_invoices
  @linked_invoices
end

#masked_card_numberObject

Returns the value of attribute masked_card_number.



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

def masked_card_number
  @masked_card_number
end

#payment_methodObject

Returns the value of attribute payment_method.



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

def payment_method
  @payment_method
end

#reference_numberObject

Returns the value of attribute reference_number.



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

def reference_number
  @reference_number
end

#refunded_txn_idObject

Returns the value of attribute refunded_txn_id.



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

def refunded_txn_id
  @refunded_txn_id
end

#statusObject

Returns the value of attribute status.



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

def status
  @status
end

#subscription_idObject

Returns the value of attribute subscription_id.



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

def subscription_id
  @subscription_id
end

#typeObject

Returns the value of attribute type.



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

def type
  @type
end

#void_descriptionObject

Returns the value of attribute void_description.



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

def void_description
  @void_description
end

#voided_atObject

Returns the value of attribute voided_at.



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

def voided_at
  @voided_at
end

Class Method Details

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

OPERATIONS




15
16
17
# File 'lib/chargebee/models/transaction.rb', line 15

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

.record_payment(id, params, env = nil) ⇒ Object



35
36
37
# File 'lib/chargebee/models/transaction.rb', line 35

def self.record_payment(id, params, env=nil)
  Request.send('post', uri_path("invoices",id.to_s,"record_payment"), params, env)
end

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



39
40
41
# File 'lib/chargebee/models/transaction.rb', line 39

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

.retrieve(id, env = nil) ⇒ Object



31
32
33
# File 'lib/chargebee/models/transaction.rb', line 31

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

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



19
20
21
# File 'lib/chargebee/models/transaction.rb', line 19

def self.transactions_for_customer(id, params={}, env=nil)
  Request.send('get', uri_path("customers",id.to_s,"transactions"), params, env)
end

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



27
28
29
# File 'lib/chargebee/models/transaction.rb', line 27

def self.transactions_for_invoice(id, params={}, env=nil)
  Request.send('get', uri_path("invoices",id.to_s,"transactions"), params, env)
end

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



23
24
25
# File 'lib/chargebee/models/transaction.rb', line 23

def self.transactions_for_subscription(id, params={}, env=nil)
  Request.send('get', uri_path("subscriptions",id.to_s,"transactions"), params, env)
end