Class: KillBillClient::Model::ComboTransaction

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

Constant Summary

Constants inherited from Resource

Resource::KILLBILL_API_PAGINATION_PREFIX, Resource::KILLBILL_API_PREFIX

Instance Attribute Summary

Attributes inherited from Resource

#clazz, #etag, #response, #session_id, #uri

Instance Method Summary collapse

Methods inherited from Resource

#==, #_to_hash, attribute, create_alias, delete, extract_session_id, from_json, from_response, get, has_many, has_one, #hash, head, #initialize, instantiate_record_from_json, post, put, #refresh, require_multi_tenant_options!, #to_hash, #to_json

Constructor Details

This class inherits a constructor from KillBillClient::Model::Resource

Instance Method Details

#auth(user = nil, reason = nil, comment = nil, options = {}) ⇒ 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 = {})
  @transaction.transaction_type = 'AUTHORIZE'

  combo_payment(user, reason, comment, options)
end

#credit(user = nil, reason = nil, comment = nil, options = {}) ⇒ 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 = {})
  @transaction.transaction_type = 'CREDIT'

  combo_payment(user, reason, comment, options)
end

#purchase(user = nil, reason = nil, comment = nil, options = {}) ⇒ 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 = {})
  @transaction.transaction_type = 'PURCHASE'

  combo_payment(user, reason, comment, options)
end