@atomixdesign/nodepay-pay-way
Version:
Nodepay strategy for the WestPac PayWay payment gateway.
9 lines (8 loc) • 425 B
TypeScript
import { IDirectDebit } from '@atomixdesign/nodepay-core/build/types';
export declare class PaywayDirectDebit implements IDirectDebit {
readonly customerId: string;
readonly paymentReference: string;
readonly amountInCents: number;
readonly customerIpAddress?: string | undefined;
constructor(customerId: string, paymentReference: string, amountInCents: number, customerIpAddress?: string | undefined);
}