maxipago-sdk-js
Version:
SDK Node.js for maxiPago! gateway
24 lines (22 loc) • 517 B
text/typescript
export interface CreateCard {
customerId: string;
creditCardNumber: string;
expirationMonth: string;
expirationYear: string;
billingName: string;
billingAddress1: string;
billingAddress2: string;
billingCity: string;
billingState: string;
billingZip: string;
billingCountry: string;
billingPhone: string;
billingEmail: string;
onFileEndDate?: string;
onFilePermissions?: string;
onFileMaxChargeAmount?: string;
}
export interface DeleteCard {
token: string;
customerId: number;
}