Sha256: 5f0ad3591193c2c2f7702b816123441fec757bdaf1f8960e14bb2fcd83ec0016

Contents?: true

Size: 585 Bytes

Versions: 2

Compression:

Stored size: 585 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

    # [PayOutPaymentType] Its type
    attr_accessor :payment_type
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mangopay-v4-4.0.2 lib/mangopay/model/entity/pay_out.rb
mangopay-v4-4.0.1 lib/mangopay/model/entity/pay_out.rb