UNPKG

@atomixdesign/nodepay-paystream

Version:

Nodepay strategy for the Paystream payment gateway.

11 lines (10 loc) 465 B
import { PaystreamPaymentFrequency } from './payment-frequency'; export declare class PaystreamSubscription { readonly customerId: string; readonly plan: string; readonly frequency: PaystreamPaymentFrequency; readonly startDate: string; readonly reference: string; readonly isActive: boolean; constructor(customerId: string, plan: string, frequency: PaystreamPaymentFrequency, startDate: string, reference: string, isActive: boolean); }