@atomixdesign/nodepay-ezidebit
Version:
Nodepay strategy for the Ezidebit payment gateway.
11 lines (10 loc) • 581 B
TypeScript
import { IDirectDebit } from '@atomixdesign/nodepay-core/build/types';
export declare class EzidebitDirectDebit implements IDirectDebit {
readonly customerId: string;
readonly paymentReference: string;
readonly amountInCents: number;
readonly ezidebitCustomerId?: string | undefined;
readonly debitDate?: string | undefined;
readonly username?: string | undefined;
constructor(customerId: string, paymentReference: string, amountInCents: number, ezidebitCustomerId?: string | undefined, debitDate?: string | undefined, username?: string | undefined);
}