maxipago-sdk-js
Version:
SDK Node.js for maxiPago! gateway
22 lines (21 loc) • 393 B
TypeScript
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 {};