UNPKG

maxipago-sdk-js

Version:
22 lines (21 loc) 393 B
export interface ZeroDollarToken { processorID: number; referenceNum: string; transactionDetail: TransactionDetail; payment: Payment; } interface TransactionDetail { payType: PayType; } interface PayType { onFile: OnFile; } interface OnFile { customerId: number; token: string; cvvNumber: string; } interface Payment { chargeTotal: string; } export {};