@atomixdesign/nodepay-paystream
Version:
Nodepay strategy for the Paystream payment gateway.
14 lines (13 loc) • 476 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaystreamPaymentPlan = void 0;
var PaystreamPaymentPlan = /** @class */ (function () {
function PaystreamPaymentPlan(name, amount, reference, description) {
this.name = name;
this.amount = amount;
this.reference = reference;
this.description = description;
}
return PaystreamPaymentPlan;
}());
exports.PaystreamPaymentPlan = PaystreamPaymentPlan;