@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
32 lines (29 loc) • 832 B
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
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;
}