Class: Ingenico::Connect::SDK::Domain::Payment::OrderOutput
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Payment::OrderOutput
- Defined in:
- lib/ingenico/connect/sdk/domain/payment/order_output.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#amount_of_money ⇒ Ingenico::Connect::SDK::Domain::Definitions::AmountOfMoney
The current value of amount_of_money.
-
#references ⇒ Ingenico::Connect::SDK::Domain::Payment::PaymentReferences
The current value of references.
Instance Method Summary collapse
Methods inherited from Ingenico::Connect::SDK::DataObject
Instance Attribute Details
#amount_of_money ⇒ Ingenico::Connect::SDK::Domain::Definitions::AmountOfMoney
Returns the current value of amount_of_money.
15 16 17 |
# File 'lib/ingenico/connect/sdk/domain/payment/order_output.rb', line 15 def amount_of_money @amount_of_money end |
#references ⇒ Ingenico::Connect::SDK::Domain::Payment::PaymentReferences
Returns the current value of references.
15 16 17 |
# File 'lib/ingenico/connect/sdk/domain/payment/order_output.rb', line 15 def references @references end |
Instance Method Details
#from_hash(hash) ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/ingenico/connect/sdk/domain/payment/order_output.rb', line 29 def from_hash(hash) super if hash.has_key? 'amountOfMoney' raise TypeError, "value '%s' is not a Hash" % [hash['amountOfMoney']] unless hash['amountOfMoney'].is_a? Hash @amount_of_money = Ingenico::Connect::SDK::Domain::Definitions::AmountOfMoney.new_from_hash(hash['amountOfMoney']) 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::PaymentReferences.new_from_hash(hash['references']) end end |
#to_h ⇒ Hash
22 23 24 25 26 27 |
# File 'lib/ingenico/connect/sdk/domain/payment/order_output.rb', line 22 def to_h hash = super hash['amountOfMoney'] = @amount_of_money.to_h unless @amount_of_money.nil? hash['references'] = @references.to_h unless @references.nil? hash end |