@atomixdesign/nodepay-ezidebit
Version:
Nodepay strategy for the Ezidebit payment gateway.
8 lines (7 loc) • 347 B
TypeScript
import { IBaseCharge } from '@atomixdesign/nodepay-core/build/types';
export declare class EzidebitCharge implements IBaseCharge {
readonly orderNumber: string;
readonly amountInCents: number;
readonly customerName?: string | undefined;
constructor(orderNumber: string, amountInCents: number, customerName?: string | undefined);
}