mangopay4-nodejs-sdk
Version:
Mangopay Node.js SDK
19 lines (15 loc) • 386 B
JavaScript
const EntityBase = require('./EntityBase');
const AccountFundingSender = require('./AccountFundingSender');
const AccountFunding = EntityBase.extend({
defaults: {
Sender: null,
Purpose: null,
Type: null
},
getSubObjects: function() {
return {
'Sender': AccountFundingSender
}
}
});
module.exports = AccountFunding;