mangopay2-nodejs-sdk-testing
Version:
Mangopay Node.js SDK for NPM testing purposes
28 lines (22 loc) • 580 B
JavaScript
var BankingAlias = require('./BankingAlias');
var BankingAliasIBAN = BankingAlias.extend({
defaults: {
/**
* The type of banking alias (note that only IBAN is available at present)
*/
Type: 'IBAN',
/**
* Custom data that you can add to this item
*/
IBAN: null,
/**
* Custom data that you can add to this item
*/
BIC: null,
/**
* The country
*/
Country: null
}
});
module.exports = BankingAliasIBAN;