UNPKG

@atomixdesign/nodepay-fatzebra

Version:

Nodepay strategy for the Fatzebra payment gateway.

10 lines (9 loc) 444 B
import { IBaseCharge } from '@atomixdesign/nodepay-core/build/types'; export declare class FatzebraCharge implements IBaseCharge { readonly orderNumber: string; readonly amountInCents: number; readonly customerIp: string; readonly cardToken?: string | undefined; readonly capture: boolean; constructor(orderNumber: string, amountInCents: number, customerIp: string, cardToken?: string | undefined, capture?: boolean); }