/* 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];
