@atomixdesign/nodepay-pay-way
Version:
Nodepay strategy for the WestPac PayWay payment gateway.
11 lines (10 loc) • 604 B
TypeScript
import { IBaseCharge } from '@atomixdesign/nodepay-core/build/types';
export declare class PaywayCharge implements IBaseCharge {
readonly orderNumber: string;
readonly amountInCents: number;
readonly customerId?: string | undefined;
readonly customerIpAddress?: string | undefined;
readonly merchantId?: string | undefined;
readonly singleUseTokenId?: string | undefined;
constructor(orderNumber: string, amountInCents: number, customerId?: string | undefined, customerIpAddress?: string | undefined, merchantId?: string | undefined, singleUseTokenId?: string | undefined);
}