@atomixdesign/nodepay-ezidebit
Version:
Nodepay strategy for the Ezidebit payment gateway.
13 lines (12 loc) • 459 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EzidebitBankAccount = void 0;
var EzidebitBankAccount = /** @class */ (function () {
function EzidebitBankAccount(accountName, accountNumber, BSBNumber) {
this.accountName = accountName;
this.accountNumber = accountNumber;
this.BSBNumber = BSBNumber;
}
return EzidebitBankAccount;
}());
exports.EzidebitBankAccount = EzidebitBankAccount;