@atomixdesign/nodepay-pay-way
Version:
Nodepay strategy for the WestPac PayWay payment gateway.
16 lines (15 loc) • 573 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaywayConfig = void 0;
var PaywayConfig = /** @class */ (function () {
function PaywayConfig(bankAccountId, merchantId, secretKey, publishableKey, apiRoot, responseType) {
this.bankAccountId = bankAccountId;
this.merchantId = merchantId;
this.secretKey = secretKey;
this.publishableKey = publishableKey;
this.apiRoot = apiRoot;
this.responseType = responseType;
}
return PaywayConfig;
}());
exports.PaywayConfig = PaywayConfig;