Class: SixSaferpay::SixOmniChannel::AcquireTransactionResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/six_saferpay/api/six_omni_channel/responses/acquire_transaction_response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response_header:, transaction:, payment_means:) ⇒ AcquireTransactionResponse

Returns a new instance of AcquireTransactionResponse.



10
11
12
13
14
15
16
17
# File 'lib/six_saferpay/api/six_omni_channel/responses/acquire_transaction_response.rb', line 10

def initialize(response_header:,
               transaction:,
               payment_means:
              )
  @response_header = SixSaferpay::ResponseHeader.new(**response_header.to_h) if response_header
  @transaction = SixSaferpay::Transaction.new(**transaction.to_h) if transaction
  @payment_means = SixSaferpay::ResponsePaymentMeans.new(**payment_means.to_h) if payment_means
end

Instance Attribute Details

#payment_meansObject

Returns the value of attribute payment_means.



5
6
7
# File 'lib/six_saferpay/api/six_omni_channel/responses/acquire_transaction_response.rb', line 5

def payment_means
  @payment_means
end

#response_headerObject

Returns the value of attribute response_header.



5
6
7
# File 'lib/six_saferpay/api/six_omni_channel/responses/acquire_transaction_response.rb', line 5

def response_header
  @response_header
end

#transactionObject

Returns the value of attribute transaction.



5
6
7
# File 'lib/six_saferpay/api/six_omni_channel/responses/acquire_transaction_response.rb', line 5

def transaction
  @transaction
end

Instance Method Details

#to_hashObject Also known as: to_h



19
20
21
22
23
24
25
# File 'lib/six_saferpay/api/six_omni_channel/responses/acquire_transaction_response.rb', line 19

def to_hash
  hash = Hash.new
  hash.merge!(response_header: @response_header.to_h) if @response_header
  hash.merge!(transaction: @transaction.to_h) if @transaction
  hash.merge!(payment_means: @payment_means.to_h) if @payment_means
  hash
end