Class: OnlinePayments::SDK::Domain::CreatePayoutRequest
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::CreatePayoutRequest
- Defined in:
- lib/onlinepayments/sdk/domain/create_payout_request.rb
Instance Attribute Summary collapse
-
#amount_of_money ⇒ OnlinePayments::SDK::Domain::AmountOfMoney
The current value of amount_of_money.
-
#card_payout_method_specific_input ⇒ OnlinePayments::SDK::Domain::CardPayoutMethodSpecificInput
The current value of card_payout_method_specific_input.
-
#omnichannel_payout_specific_input ⇒ OnlinePayments::SDK::Domain::OmnichannelPayoutSpecificInput
The current value of omnichannel_payout_specific_input.
-
#references ⇒ OnlinePayments::SDK::Domain::PaymentReferences
The current value of references.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#amount_of_money ⇒ OnlinePayments::SDK::Domain::AmountOfMoney
Returns the current value of amount_of_money.
17 18 19 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.rb', line 17 def amount_of_money @amount_of_money end |
#card_payout_method_specific_input ⇒ OnlinePayments::SDK::Domain::CardPayoutMethodSpecificInput
Returns the current value of card_payout_method_specific_input.
17 18 19 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.rb', line 17 def card_payout_method_specific_input @card_payout_method_specific_input end |
#omnichannel_payout_specific_input ⇒ OnlinePayments::SDK::Domain::OmnichannelPayoutSpecificInput
Returns the current value of omnichannel_payout_specific_input.
17 18 19 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.rb', line 17 def omnichannel_payout_specific_input @omnichannel_payout_specific_input end |
#references ⇒ OnlinePayments::SDK::Domain::PaymentReferences
Returns the current value of references.
17 18 19 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.rb', line 17 def references @references end |
Instance Method Details
#from_hash(hash) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.rb', line 33 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 = OnlinePayments::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 = OnlinePayments::SDK::Domain::CardPayoutMethodSpecificInput.new_from_hash(hash['cardPayoutMethodSpecificInput']) end if hash.key? 'omnichannelPayoutSpecificInput' raise TypeError, "value '%s' is not a Hash" % [hash['omnichannelPayoutSpecificInput']] unless hash['omnichannelPayoutSpecificInput'].is_a? Hash @omnichannel_payout_specific_input = OnlinePayments::SDK::Domain::OmnichannelPayoutSpecificInput.new_from_hash(hash['omnichannelPayoutSpecificInput']) end if hash.key? 'references' raise TypeError, "value '%s' is not a Hash" % [hash['references']] unless hash['references'].is_a? Hash @references = OnlinePayments::SDK::Domain::PaymentReferences.new_from_hash(hash['references']) end end |
#to_h ⇒ Hash
24 25 26 27 28 29 30 31 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.rb', line 24 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['omnichannelPayoutSpecificInput'] = @omnichannel_payout_specific_input.to_h if @omnichannel_payout_specific_input hash['references'] = @references.to_h if @references hash end |