Class: Ingenico::Connect::SDK::Domain::Payment::OrderApprovePayment
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Payment::OrderApprovePayment
- Defined in:
- lib/ingenico/connect/sdk/domain/payment/order_approve_payment.rb
Instance Attribute Summary collapse
-
#additional_input ⇒ Ingenico::Connect::SDK::Domain::Definitions::AdditionalOrderInputAirlineData
The current value of additional_input.
-
#customer ⇒ Ingenico::Connect::SDK::Domain::Payment::CustomerApprovePayment
The current value of customer.
-
#references ⇒ Ingenico::Connect::SDK::Domain::Payment::OrderReferencesApprovePayment
The current value of references.
Instance Method Summary collapse
Methods inherited from Ingenico::Connect::SDK::DataObject
Instance Attribute Details
#additional_input ⇒ Ingenico::Connect::SDK::Domain::Definitions::AdditionalOrderInputAirlineData
Returns the current value of additional_input.
17 18 19 |
# File 'lib/ingenico/connect/sdk/domain/payment/order_approve_payment.rb', line 17 def additional_input @additional_input end |
#customer ⇒ Ingenico::Connect::SDK::Domain::Payment::CustomerApprovePayment
Returns the current value of customer.
17 18 19 |
# File 'lib/ingenico/connect/sdk/domain/payment/order_approve_payment.rb', line 17 def customer @customer end |
#references ⇒ Ingenico::Connect::SDK::Domain::Payment::OrderReferencesApprovePayment
Returns the current value of references.
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_h ⇒ Hash
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 |