/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ import type { PaymentRequestCardVerificationResultsThreeDeeSecure } from './PaymentRequestCardVerificationResultsThreeDeeSecure'; /** * * @export * @interface PaymentRequestCardVerificationResults */ export interface PaymentRequestCardVerificationResults { /** * * @type {PaymentRequestCardVerificationResultsThreeDeeSecure} * @memberof PaymentRequestCardVerificationResults */ threeDSecure: PaymentRequestCardVerificationResultsThreeDeeSecure | null; /** * * @type {string} * @memberof PaymentRequestCardVerificationResults */ cvvResult?: string | null; /** * * @type {string} * @memberof PaymentRequestCardVerificationResults */ addressVerificationResult?: string | null; } /** * Check if a given object implements the PaymentRequestCardVerificationResults interface. */ export declare function instanceOfPaymentRequestCardVerificationResults(value: object): boolean; export declare function PaymentRequestCardVerificationResultsFromJSON(json: any): PaymentRequestCardVerificationResults; export declare function PaymentRequestCardVerificationResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentRequestCardVerificationResults; export declare function PaymentRequestCardVerificationResultsToJSON(value?: PaymentRequestCardVerificationResults | null): any;