Class: KillBillClient::Model::ComboTransaction

Inherits:
ComboPaymentTransactionAttributes show all
Defined in:
lib/killbill_client/models/combo_transaction.rb

Instance Method Summary collapse

Instance Method Details

#auth(user = nil, reason = nil, comment = nil, options = {}, refresh_options = nil) ⇒ Object



5
6
7
8
9
# File 'lib/killbill_client/models/combo_transaction.rb', line 5

def auth(user = nil, reason = nil, comment = nil, options = {}, refresh_options = nil)
  @transaction.transaction_type = 'AUTHORIZE'

  combo_payment(user, reason, comment, options, refresh_options)
end

#credit(user = nil, reason = nil, comment = nil, options = {}, refresh_options = nil) ⇒ Object



17
18
19
20
21
# File 'lib/killbill_client/models/combo_transaction.rb', line 17

def credit(user = nil, reason = nil, comment = nil, options = {}, refresh_options = nil)
  @transaction.transaction_type = 'CREDIT'

  combo_payment(user, reason, comment, options, refresh_options)
end

#purchase(user = nil, reason = nil, comment = nil, options = {}, refresh_options = nil) ⇒ Object



11
12
13
14
15
# File 'lib/killbill_client/models/combo_transaction.rb', line 11

def purchase(user = nil, reason = nil, comment = nil, options = {}, refresh_options = nil)
  @transaction.transaction_type = 'PURCHASE'

  combo_payment(user, reason, comment, options, refresh_options)
end