Class: Ingenico::Connect::SDK::Domain::Payment::OrderApprovePayment

Inherits:
Ingenico::Connect::SDK::DataObject show all
Defined in:
lib/ingenico/connect/sdk/domain/payment/order_approve_payment.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Connect::SDK::DataObject

new_from_hash

Instance Attribute Details

#additional_inputIngenico::Connect::SDK::Domain::Definitions::AdditionalOrderInputAirlineData



17
18
19
# File 'lib/ingenico/connect/sdk/domain/payment/order_approve_payment.rb', line 17

def additional_input
  @additional_input
end

#customerIngenico::Connect::SDK::Domain::Payment::CustomerApprovePayment



17
18
19
# File 'lib/ingenico/connect/sdk/domain/payment/order_approve_payment.rb', line 17

def customer
  @customer
end

#referencesIngenico::Connect::SDK::Domain::Payment::OrderReferencesApprovePayment



17
18
19
# File 'lib/ingenico/connect/sdk/domain/payment/order_approve_payment.rb', line 17

def references
  @references
end

Instance Method Details

#from_hash(hash) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# 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_hHash



26
27
28
29
30
31
32
# 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