UNPKG

maxipago-sdk-js

Version:
31 lines (25 loc) 442 B
export interface SaleWithToken { sale: Sale; } interface Sale { processorID: number; referenceNum: string; ipAddress: string; transactionDetail: TransactionDetail; payment: Payment; } interface Payment { currencyCode: 'BRL'; chargeTotal: string; } interface TransactionDetail { payType: PayType; } interface PayType { onFile: OnFile; } interface OnFile { customerId: string; token: string; cvvNumber: string; }