/** * 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 { CardVerificationResultsThreeDSecure } from './CardVerificationResultsThreeDSecure'; /** * * @export * @interface CardVerificationResults */ export interface CardVerificationResults { /** * * @type {CardVerificationResultsThreeDSecure} * @memberof CardVerificationResults */ threeDSecure: CardVerificationResultsThreeDSecure | null; /** * * @type {string} * @memberof CardVerificationResults */ cvvResult?: string | null; /** * * @type {string} * @memberof CardVerificationResults */ addressVerificationResult?: string | null; } /** * Check if a given object implements the CardVerificationResults interface. */ export declare function instanceOfCardVerificationResults(value: object): boolean; export declare function CardVerificationResultsFromJSON(json: any): CardVerificationResults; export declare function CardVerificationResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardVerificationResults; export declare function CardVerificationResultsToJSON(value?: CardVerificationResults | null): any;