Class: SixSaferpay::SixSecureData::UpdateResponse
- Inherits:
-
Object
- Object
- SixSaferpay::SixSecureData::UpdateResponse
- Defined in:
- lib/six_saferpay/api/six_secure_card_data/responses/update_response.rb
Instance Attribute Summary collapse
-
#fd_alias ⇒ Object
Returns the value of attribute fd_alias.
-
#payment_means ⇒ Object
Returns the value of attribute payment_means.
-
#response_header ⇒ Object
Returns the value of attribute response_header.
Instance Method Summary collapse
-
#initialize(response_header:, fd_alias:, payment_means:) ⇒ UpdateResponse
constructor
A new instance of UpdateResponse.
- #to_hash ⇒ Object (also: #to_h)
Constructor Details
#initialize(response_header:, fd_alias:, payment_means:) ⇒ UpdateResponse
Returns a new instance of UpdateResponse.
10 11 12 13 14 15 16 |
# File 'lib/six_saferpay/api/six_secure_card_data/responses/update_response.rb', line 10 def initialize(response_header:, fd_alias:, payment_means: ) @response_header = SixSaferpay::ResponseHeader.new(**response_header.to_h) if response_header @fd_alias = SixSaferpay::Alias.new(**fd_alias.to_h) @payment_means = SixSaferpay::ResponsePaymentMeans.new(**payment_means.to_h) end |
Instance Attribute Details
#fd_alias ⇒ Object
Returns the value of attribute fd_alias.
5 6 7 |
# File 'lib/six_saferpay/api/six_secure_card_data/responses/update_response.rb', line 5 def fd_alias @fd_alias end |
#payment_means ⇒ Object
Returns the value of attribute payment_means.
5 6 7 |
# File 'lib/six_saferpay/api/six_secure_card_data/responses/update_response.rb', line 5 def payment_means @payment_means end |
#response_header ⇒ Object
Returns the value of attribute response_header.
5 6 7 |
# File 'lib/six_saferpay/api/six_secure_card_data/responses/update_response.rb', line 5 def response_header @response_header end |
Instance Method Details
#to_hash ⇒ Object Also known as: to_h
18 19 20 21 22 23 24 |
# File 'lib/six_saferpay/api/six_secure_card_data/responses/update_response.rb', line 18 def to_hash hash = Hash.new hash.merge!(response_header: @response_header.to_h) if @response_header hash.merge!(fd_alias: @fd_alias.to_h) if @fd_alias hash.merge!(payment_means: @payment_means.to_h) if @payment_means hash end |