Class: Ingenico::Connect::SDK::Domain::Payout::PayoutDetails
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Payout::PayoutDetails
- Defined in:
- lib/ingenico/connect/sdk/domain/payout/payout_details.rb
Instance Attribute Summary collapse
-
#amount_of_money ⇒ Ingenico::Connect::SDK::Domain::Definitions::AmountOfMoney
The current value of amount_of_money.
-
#customer ⇒ Ingenico::Connect::SDK::Domain::Payout::PayoutCustomer
The current value of customer.
-
#references ⇒ Ingenico::Connect::SDK::Domain::Payout::PayoutReferences
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.
18 19 20 |
# File 'lib/ingenico/connect/sdk/domain/payout/payout_details.rb', line 18 def amount_of_money @amount_of_money end |
#customer ⇒ Ingenico::Connect::SDK::Domain::Payout::PayoutCustomer
Returns the current value of customer.
18 19 20 |
# File 'lib/ingenico/connect/sdk/domain/payout/payout_details.rb', line 18 def customer @customer end |
#references ⇒ Ingenico::Connect::SDK::Domain::Payout::PayoutReferences
Returns the current value of references.
18 19 20 |
# File 'lib/ingenico/connect/sdk/domain/payout/payout_details.rb', line 18 def references @references end |
Instance Method Details
#from_hash(hash) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/ingenico/connect/sdk/domain/payout/payout_details.rb', line 35 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? 'customer' raise TypeError, "value '%s' is not a Hash" % [hash['customer']] unless hash['customer'].is_a? Hash @customer = Ingenico::Connect::SDK::Domain::Payout::PayoutCustomer.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::Payout::PayoutReferences.new_from_hash(hash['references']) end end |
#to_h ⇒ Hash
27 28 29 30 31 32 33 |
# File 'lib/ingenico/connect/sdk/domain/payout/payout_details.rb', line 27 def to_h hash = super hash['amountOfMoney'] = @amount_of_money.to_h unless @amount_of_money.nil? hash['customer'] = @customer.to_h unless @customer.nil? hash['references'] = @references.to_h unless @references.nil? hash end |