UNPKG

@atomixdesign/nodepay-paystream

Version:

Nodepay strategy for the Paystream payment gateway.

16 lines (15 loc) 579 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PaystreamSubscription = void 0; var PaystreamSubscription = /** @class */ (function () { function PaystreamSubscription(customerId, plan, frequency, startDate, reference, isActive) { this.customerId = customerId; this.plan = plan; this.frequency = frequency; this.startDate = startDate; this.reference = reference; this.isActive = isActive; } return PaystreamSubscription; }()); exports.PaystreamSubscription = PaystreamSubscription;