/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * When users are required to enroll an MFA method. * - `none`: enrollment is not required. * - `signup`: enrollment is forced at signup; users must register a TOTP device * or passkey during onboarding. * - `action`: enrollment is deferred until the user attempts a protected action * that requires step-up verification. * @export * @enum {string} */ export declare enum MfaEnrollment { None = "none", Signup = "signup", Action = "action" } export declare function MfaEnrollmentFromJSON(json: any): MfaEnrollment; export declare function MfaEnrollmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): MfaEnrollment; export declare function MfaEnrollmentToJSON(value?: MfaEnrollment | null): any;