Class: SixSaferpay::SixPaymentPage::InitializeResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/six_saferpay/api/six_payment_page/responses/initialize_response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response_header:, token:, expiration:, redirect_url:) ⇒ InitializeResponse

Returns a new instance of InitializeResponse.



11
12
13
14
15
16
17
18
19
# File 'lib/six_saferpay/api/six_payment_page/responses/initialize_response.rb', line 11

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

Instance Attribute Details

#expirationObject

Returns the value of attribute expiration.



5
6
7
# File 'lib/six_saferpay/api/six_payment_page/responses/initialize_response.rb', line 5

def expiration
  @expiration
end

#redirect_urlObject

Returns the value of attribute redirect_url.



5
6
7
# File 'lib/six_saferpay/api/six_payment_page/responses/initialize_response.rb', line 5

def redirect_url
  @redirect_url
end

#response_headerObject

Returns the value of attribute response_header.



5
6
7
# File 'lib/six_saferpay/api/six_payment_page/responses/initialize_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_payment_page/responses/initialize_response.rb', line 5

def token
  @token
end

Instance Method Details

#to_hashObject Also known as: to_h



21
22
23
24
25
26
27
28
# File 'lib/six_saferpay/api/six_payment_page/responses/initialize_response.rb', line 21

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