/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { CvvResults } from "./cvv-results";
/**
 * Indicates the status of the card for verification purposes.
 * @export
 * @interface CardVerificationResponse
 */
export interface CardVerificationResponse {
    /**
     * Status of the AVS check. Raw AVS response, expressed as an upper-case letter. `not_requested` indicates check was not made. `pending` is pending/processing.
     * @type {string}
     * @memberof CardVerificationResponse
     */
    avs: string;
    /**
     *
     * @type {CvvResults}
     * @memberof CardVerificationResponse
     */
    cvv: CvvResults;
}
