class Ingenico::Direct::SDK::Domain::CreatePayoutRequest
@attr [Ingenico::Direct::SDK::Domain::AmountOfMoney] amount_of_money
@attr [Ingenico::Direct::SDK::Domain::CardPayoutMethodSpecificInput] card_payout_method_specific_input
@attr [Ingenico::Direct::SDK::Domain::PaymentReferences] references
Attributes
amount_of_money[RW]
card_payout_method_specific_input[RW]
references[RW]
Public Instance Methods
from_hash(hash)
click to toggle source
Calls superclass method
Ingenico::Direct::SDK::DataObject#from_hash
# 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()
click to toggle source
@return (Hash)
Calls superclass method
Ingenico::Direct::SDK::DataObject#to_h
# 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