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.
-
#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.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.rb', line 15 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.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.rb', line 15 def card_payout_method_specific_input @card_payout_method_specific_input end |
#references ⇒ OnlinePayments::SDK::Domain::PaymentReferences
Returns the current value of references.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.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 40 41 42 43 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.rb', line 29 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? '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
21 22 23 24 25 26 27 |
# File 'lib/onlinepayments/sdk/domain/create_payout_request.rb', line 21 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 |