UNPKG

mangopay2-nodejs-sdk

Version:
28 lines (22 loc) 553 B
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;