UNPKG

@circle-fin/circle-sdk

Version:
19 lines (18 loc) 763 B
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Enumerated status of the check. `not_requested` indicates check was not made. `pass` indicates value is correct. `fail` indicates value is incorrect. `unavailable` indicates card issuer did not do the provided check. `pending` indicates check is pending/processing. * @export * @enum {string} */ export declare const CvvResults: { readonly NotRequested: "not_requested"; readonly Pass: "pass"; readonly Fail: "fail"; readonly Unavailable: "unavailable"; readonly Pending: "pending"; }; export declare type CvvResults = typeof CvvResults[keyof typeof CvvResults];