mangopay2-nodejs-sdk
Version:
Mangopay Node.js SDK
20 lines (16 loc) • 507 B
JavaScript
var _ = require('underscore');
var PayInPaymentDetails = require('./PayInPaymentDetails');
var PayInPaymentDetailsSatispay = PayInPaymentDetails.extend({
defaults: {
/**
* Custom description to show on the user's bank statement.
* It can be up to 10 char alpha-numeric and space.
*/
StatementDescriptor: null,
/**
* The end-user country of residence
*/
Country: null
}
});
module.exports = PayInPaymentDetailsSatispay;