class Ingenico::Connect::SDK::Domain::Payment::OrderApprovePayment

@attr [Ingenico::Connect::SDK::Domain::Definitions::AdditionalOrderInputAirlineData] additional_input @attr [Ingenico::Connect::SDK::Domain::Payment::CustomerApprovePayment] customer @attr [Ingenico::Connect::SDK::Domain::Payment::OrderReferencesApprovePayment] references

Attributes

additional_input[RW]
customer[RW]
references[RW]

Public Instance Methods

from_hash(hash) click to toggle source
# File lib/ingenico/connect/sdk/domain/payment/order_approve_payment.rb, line 34
def from_hash(hash)
  super
  if hash.has_key? 'additionalInput'
    raise TypeError, "value '%s' is not a Hash" % [hash['additionalInput']] unless hash['additionalInput'].is_a? Hash
    @additional_input = Ingenico::Connect::SDK::Domain::Definitions::AdditionalOrderInputAirlineData.new_from_hash(hash['additionalInput'])
  end
  if hash.has_key? 'customer'
    raise TypeError, "value '%s' is not a Hash" % [hash['customer']] unless hash['customer'].is_a? Hash
    @customer = Ingenico::Connect::SDK::Domain::Payment::CustomerApprovePayment.new_from_hash(hash['customer'])
  end
  if hash.has_key? 'references'
    raise TypeError, "value '%s' is not a Hash" % [hash['references']] unless hash['references'].is_a? Hash
    @references = Ingenico::Connect::SDK::Domain::Payment::OrderReferencesApprovePayment.new_from_hash(hash['references'])
  end
end
to_h() click to toggle source

@return (Hash)

Calls superclass method Ingenico::Connect::SDK::DataObject#to_h
# File lib/ingenico/connect/sdk/domain/payment/order_approve_payment.rb, line 26
def to_h
  hash = super
  hash['additionalInput'] = @additional_input.to_h unless @additional_input.nil?
  hash['customer'] = @customer.to_h unless @customer.nil?
  hash['references'] = @references.to_h unless @references.nil?
  hash
end