Class: SixSaferpay::SixTransaction::AlternativePaymentResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/six_saferpay/api/six_transaction/responses/alternative_payment_response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response_header:, token:, expiration:, processing_data: nil) ⇒ AlternativePaymentResponse

Returns a new instance of AlternativePaymentResponse.



13
14
15
16
17
18
19
20
21
# File 'lib/six_saferpay/api/six_transaction/responses/alternative_payment_response.rb', line 13

def initialize(response_header:,
              token:,
              expiration:,
              processing_data: nil)
  @response_header = SixSaferpay::ResponseHeader.new(**response_header.to_h) if response_header
  @token = token
  @expiration = expiration
  @processing_data = SixSaferpay::ProcessingData.new(**@processing_data.to_h) if processing_data
end

Instance Attribute Details

#expirationObject

Returns the value of attribute expiration.



5
6
7
# File 'lib/six_saferpay/api/six_transaction/responses/alternative_payment_response.rb', line 5

def expiration
  @expiration
end

#response_headerObject

Returns the value of attribute response_header.



5
6
7
# File 'lib/six_saferpay/api/six_transaction/responses/alternative_payment_response.rb', line 5

def response_header
  @response_header
end

#tokenObject

Returns the value of attribute token.



5
6
7
# File 'lib/six_saferpay/api/six_transaction/responses/alternative_payment_response.rb', line 5

def token
  @token
end

Instance Method Details

#to_hashObject Also known as: to_h



23
24
25
26
27
28
29
30
# File 'lib/six_saferpay/api/six_transaction/responses/alternative_payment_response.rb', line 23

def to_hash
  hash = Hash.new
  hash.merge!(response_header: @response_header.to_h) if @response_header
  hash.merge!(token: @token)
  hash.merge!(expiration: @expiration)
  hash.merge!(processing_data: @processing_data.to_h) if @processing_data
  hash
end