mangopay2-nodejs-sdk
Version:
Mangopay Node.js SDK
33 lines (24 loc) • 811 B
JavaScript
var _ = require('underscore');
var PayOutPaymentDetails = require('./PayOutPaymentDetails');
var PayOutPaymentDetailsBankWire = PayOutPaymentDetails.extend({
defaults: {
BankAccountId: null,
/**
* A custom reference you wish to appear on the user’s bank statement
*/
BankWireRef: null,
/**
* Payment reference provided for the payout.
*/
PayoutPaymentRef: null,
/**
* The new parameter "PayoutModeRequested" can take the following values: "STANDARD", "INSTANT_PAYMENT", "INSTANT_PAYMENT_ONLY"
*/
PayoutModeRequested: null,
ModeRequested: null,
ModeApplied: null,
Status: null,
FallbackReason: null
}
});
module.exports = PayOutPaymentDetailsBankWire;