Class: MangoModel::PayOut
- Inherits:
-
Transaction
- Object
- EntityBase
- Transaction
- MangoModel::PayOut
- Includes:
- MangoPay::Jsonifier
- Defined in:
- lib/mangopay/model/entity/pay_out.rb
Overview
Pay-Out entity A Pay-Out bank-wire is a request to withdraw money from a wallet to a bank account.
Constant Summary
Constants included from MangoPay::Jsonifier
Instance Attribute Summary collapse
-
#bank_account_id ⇒ Object
- String
-
ID of the bank account.
-
#bank_wire_ref ⇒ Object
- String
-
A custom reference to be present on the user’s bank statement along with environment’s Client name (max 12 chars).
-
#payment_type ⇒ Object
- PayOutPaymentType
-
Its type.
-
#payout_mode_requested ⇒ Object
- String
-
The new parameter “PayoutModeRequested” can take two different values : “INSTANT_PAYMENT” or “STANDARD”.
Attributes inherited from Transaction
#author_id, #credited_funds, #credited_user_id, #credited_wallet_id, #debited_funds, #debited_wallet_id, #execution_date, #fees, #nature, #result_code, #result_message, #status, #type
Attributes inherited from EntityBase
Method Summary
Methods included from MangoPay::Jsonifier
Methods included from NonInstantiable
Instance Attribute Details
#bank_account_id ⇒ Object
- String
-
ID of the bank account
13 14 15 |
# File 'lib/mangopay/model/entity/pay_out.rb', line 13 def bank_account_id @bank_account_id end |
#bank_wire_ref ⇒ Object
- String
-
A custom reference to be present on the user’s bank
statement along with environment’s Client name (max 12 chars)
17 18 19 |
# File 'lib/mangopay/model/entity/pay_out.rb', line 17 def bank_wire_ref @bank_wire_ref end |
#payment_type ⇒ Object
- PayOutPaymentType
-
Its type
23 24 25 |
# File 'lib/mangopay/model/entity/pay_out.rb', line 23 def payment_type @payment_type end |
#payout_mode_requested ⇒ Object
- String
-
The new parameter “PayoutModeRequested” can take two different values : “INSTANT_PAYMENT” or “STANDARD”
20 21 22 |
# File 'lib/mangopay/model/entity/pay_out.rb', line 20 def payout_mode_requested @payout_mode_requested end |