@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
21 lines (17 loc) • 531 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.
*/
/**
* Enumerated status of the check. `pass` indicates successful 3DS authentication. `fail` indicates failed 3DS authentication.
* @export
* @enum {string}
*/
export const ThreeDsResult = {
Pass: "pass",
Fail: "fail"
} as const;
export type ThreeDsResult = typeof ThreeDsResult[keyof typeof ThreeDsResult];