@atomixdesign/nodepay-paystream
Version:
Nodepay strategy for the Paystream payment gateway.
9 lines (8 loc) • 395 B
TypeScript
import { IBaseCharge } from '@atomixdesign/nodepay-core/build/types';
export declare class PaystreamCharge implements IBaseCharge {
readonly orderNumber: string;
readonly amountInCents: number;
readonly customerIp: string;
readonly cardToken?: string | undefined;
constructor(orderNumber: string, amountInCents: number, customerIp: string, cardToken?: string | undefined);
}