/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Status of 2FA for the user * @export * @interface TwoFactorAuthStatus */ export interface TwoFactorAuthStatus { /** * * @type {string} * @memberof TwoFactorAuthStatus */ status?: TwoFactorAuthStatusStatusEnum; } /** * @export */ export declare const TwoFactorAuthStatusStatusEnum: { readonly ENABLED: "ENABLED"; readonly DISABLED: "DISABLED"; }; export type TwoFactorAuthStatusStatusEnum = typeof TwoFactorAuthStatusStatusEnum[keyof typeof TwoFactorAuthStatusStatusEnum]; /** * Check if a given object implements the TwoFactorAuthStatus interface. */ export declare function instanceOfTwoFactorAuthStatus(value: object): value is TwoFactorAuthStatus; export declare function TwoFactorAuthStatusFromJSON(json: any): TwoFactorAuthStatus; export declare function TwoFactorAuthStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): TwoFactorAuthStatus; export declare function TwoFactorAuthStatusToJSON(json: any): TwoFactorAuthStatus; export declare function TwoFactorAuthStatusToJSONTyped(value?: TwoFactorAuthStatus | null, ignoreDiscriminator?: boolean): any;