Class: KillBillClient::Model::ComboTransaction
- Inherits:
-
ComboPaymentTransactionAttributes
- Object
- Resource
- ComboPaymentTransactionAttributes
- KillBillClient::Model::ComboTransaction
- Defined in:
- lib/killbill_client/models/combo_transaction.rb
Instance Method Summary collapse
- #auth(user = nil, reason = nil, comment = nil, options = {}, refresh_options = nil) ⇒ Object
- #credit(user = nil, reason = nil, comment = nil, options = {}, refresh_options = nil) ⇒ Object
- #purchase(user = nil, reason = nil, comment = nil, options = {}, refresh_options = nil) ⇒ Object
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, = {}, = nil) @transaction.transaction_type = 'AUTHORIZE' combo_payment(user, reason, comment, , ) 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, = {}, = nil) @transaction.transaction_type = 'CREDIT' combo_payment(user, reason, comment, , ) 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, = {}, = nil) @transaction.transaction_type = 'PURCHASE' combo_payment(user, reason, comment, , ) end |