@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
16 lines (15 loc) • 515 B
TypeScript
/**
* 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 declare const ThreeDsResult: {
readonly Pass: "pass";
readonly Fail: "fail";
};
export declare type ThreeDsResult = typeof ThreeDsResult[keyof typeof ThreeDsResult];