Class: Ingenico::Direct::SDK::Domain::GetHostedCheckoutResponse

Inherits:
Ingenico::Direct::SDK::DataObject show all
Defined in:
lib/ingenico/direct/sdk/domain/get_hosted_checkout_response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Direct::SDK::DataObject

new_from_hash

Instance Attribute Details

#created_payment_outputIngenico::Direct::SDK::Domain::CreatedPaymentOutput

Returns the current value of created_payment_output.

Returns:



13
14
15
# File 'lib/ingenico/direct/sdk/domain/get_hosted_checkout_response.rb', line 13

def created_payment_output
  @created_payment_output
end

#statusString

Returns the current value of status.

Returns:

  • (String)

    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_hHash

Returns:

  • (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