Class: Ingenico::Direct::SDK::Domain::CreatePayoutRequest
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::CreatePayoutRequest
- Defined in:
- lib/ingenico/direct/sdk/domain/create_payout_request.rb
Instance Attribute Summary collapse
-
#amount_of_money ⇒ Ingenico::Direct::SDK::Domain::AmountOfMoney
The current value of amount_of_money.
-
#card_payout_method_specific_input ⇒ Ingenico::Direct::SDK::Domain::CardPayoutMethodSpecificInput
The current value of card_payout_method_specific_input.
-
#references ⇒ Ingenico::Direct::SDK::Domain::PaymentReferences
The current value of references.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#amount_of_money ⇒ Ingenico::Direct::SDK::Domain::AmountOfMoney
Returns the current value of amount_of_money.
16 17 18 |
# File 'lib/ingenico/direct/sdk/domain/create_payout_request.rb', line 16 def amount_of_money @amount_of_money end |
#card_payout_method_specific_input ⇒ Ingenico::Direct::SDK::Domain::CardPayoutMethodSpecificInput
Returns the current value of card_payout_method_specific_input.
16 17 18 |
# File 'lib/ingenico/direct/sdk/domain/create_payout_request.rb', line 16 def card_payout_method_specific_input @card_payout_method_specific_input end |
#references ⇒ Ingenico::Direct::SDK::Domain::PaymentReferences
Returns the current value of references.
16 17 18 |
# File 'lib/ingenico/direct/sdk/domain/create_payout_request.rb', line 16 def references @references end |
Instance Method Details
#from_hash(hash) ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/ingenico/direct/sdk/domain/create_payout_request.rb', line 30 def from_hash(hash) super if hash.key? 'amountOfMoney' raise TypeError, "value '%s' is not a Hash" % [hash['amountOfMoney']] unless hash['amountOfMoney'].is_a? Hash @amount_of_money = Ingenico::Direct::SDK::Domain::AmountOfMoney.new_from_hash(hash['amountOfMoney']) end if hash.key? 'cardPayoutMethodSpecificInput' raise TypeError, "value '%s' is not a Hash" % [hash['cardPayoutMethodSpecificInput']] unless hash['cardPayoutMethodSpecificInput'].is_a? Hash @card_payout_method_specific_input = Ingenico::Direct::SDK::Domain::CardPayoutMethodSpecificInput.new_from_hash(hash['cardPayoutMethodSpecificInput']) end if hash.key? 'references' raise TypeError, "value '%s' is not a Hash" % [hash['references']] unless hash['references'].is_a? Hash @references = Ingenico::Direct::SDK::Domain::PaymentReferences.new_from_hash(hash['references']) end end |
#to_h ⇒ Hash
22 23 24 25 26 27 28 |
# File 'lib/ingenico/direct/sdk/domain/create_payout_request.rb', line 22 def to_h hash = super hash['amountOfMoney'] = @amount_of_money.to_h if @amount_of_money hash['cardPayoutMethodSpecificInput'] = @card_payout_method_specific_input.to_h if @card_payout_method_specific_input hash['references'] = @references.to_h if @references hash end |