@airwallex/node-sdk
Version:
Airwallex Node.js SDK
25 lines • 1 kB
TypeScript
import { PaymentAcceptanceBillingRequest } from './paymentAcceptanceBillingRequest';
import { PaymentAcceptanceCardAdditionalInfoRequest } from './paymentAcceptanceCardAdditionalInfoRequest';
import { PaymentAcceptanceExternalThreeDomainSecure } from './paymentAcceptanceExternalThreeDomainSecure';
export interface PaymentAcceptanceCardVerifyRequest {
additional_info?: PaymentAcceptanceCardAdditionalInfoRequest;
billing?: PaymentAcceptanceBillingRequest;
cryptogram?: string;
cvc?: string;
expiry_month?: string;
expiry_year?: string;
external_three_ds?: PaymentAcceptanceExternalThreeDomainSecure;
name?: string;
number?: string;
number_type?: string;
three_ds_action?: string;
}
export declare namespace PaymentAcceptanceCardVerifyRequest {
const discriminator: string;
const attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
}
//# sourceMappingURL=paymentAcceptanceCardVerifyRequest.d.ts.map