Sha256: 26e45af9886d75f7df50add1b91d51684fc60b7121c6dd769bd5d83fc3ceeac8
Contents?: true
Size: 746 Bytes
Versions: 1
Compression:
Stored size: 746 Bytes
Contents
require_relative 'transaction' require_relative '../../common/jsonifier' module MangoModel # Pay-Out entity # A Pay-Out bank-wire is a request to withdraw money from a wallet # to a bank account. class PayOut < Transaction include MangoPay::Jsonifier # [String] ID of the bank account attr_accessor :bank_account_id # [String] A custom reference to be present on the user's bank # statement along with environment's Client name (max 12 chars) attr_accessor :bank_wire_ref # [String] The new parameter "PayoutModeRequested" can take two different values : "INSTANT_PAYMENT" or "STANDARD" attr_accessor :payout_mode_requested # [PayOutPaymentType] Its type attr_accessor :payment_type end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mangopay-v4-4.1.0 | lib/mangopay/model/entity/pay_out.rb |