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