Class: Ingenico::Direct::SDK::Domain::GetHostedCheckoutResponse
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::GetHostedCheckoutResponse
- Defined in:
- lib/ingenico/direct/sdk/domain/get_hosted_checkout_response.rb
Instance Attribute Summary collapse
-
#created_payment_output ⇒ Ingenico::Direct::SDK::Domain::CreatedPaymentOutput
The current value of created_payment_output.
-
#status ⇒ String
The current value of status.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#created_payment_output ⇒ Ingenico::Direct::SDK::Domain::CreatedPaymentOutput
Returns the current value of created_payment_output.
13 14 15 |
# File 'lib/ingenico/direct/sdk/domain/get_hosted_checkout_response.rb', line 13 def created_payment_output @created_payment_output end |
#status ⇒ String
Returns the current value of status.
13 14 15 |
# File 'lib/ingenico/direct/sdk/domain/get_hosted_checkout_response.rb', line 13 def status @status end |
Instance Method Details
#from_hash(hash) ⇒ Object
25 26 27 28 29 30 31 32 |
# File 'lib/ingenico/direct/sdk/domain/get_hosted_checkout_response.rb', line 25 def from_hash(hash) super if hash.key? 'createdPaymentOutput' raise TypeError, "value '%s' is not a Hash" % [hash['createdPaymentOutput']] unless hash['createdPaymentOutput'].is_a? Hash @created_payment_output = Ingenico::Direct::SDK::Domain::CreatedPaymentOutput.new_from_hash(hash['createdPaymentOutput']) end @status = hash['status'] if hash.key? 'status' end |
#to_h ⇒ Hash
18 19 20 21 22 23 |
# File 'lib/ingenico/direct/sdk/domain/get_hosted_checkout_response.rb', line 18 def to_h hash = super hash['createdPaymentOutput'] = @created_payment_output.to_h if @created_payment_output hash['status'] = @status unless @status.nil? hash end |