/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { DigitsEnum } from './DigitsEnum'; import type { FlowSetRequest } from './FlowSetRequest'; /** * AuthenticatorTOTPStage Serializer * @export * @interface AuthenticatorTOTPStageRequest */ export interface AuthenticatorTOTPStageRequest { /** * * @type {string} * @memberof AuthenticatorTOTPStageRequest */ name: string; /** * * @type {Array} * @memberof AuthenticatorTOTPStageRequest */ flowSet?: Array; /** * Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage. * @type {string} * @memberof AuthenticatorTOTPStageRequest */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorTOTPStageRequest */ friendlyName?: string | null; /** * * @type {DigitsEnum} * @memberof AuthenticatorTOTPStageRequest */ digits: DigitsEnum; } /** * Check if a given object implements the AuthenticatorTOTPStageRequest interface. */ export declare function instanceOfAuthenticatorTOTPStageRequest(value: object): value is AuthenticatorTOTPStageRequest; export declare function AuthenticatorTOTPStageRequestFromJSON(json: any): AuthenticatorTOTPStageRequest; export declare function AuthenticatorTOTPStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorTOTPStageRequest; export declare function AuthenticatorTOTPStageRequestToJSON(json: any): AuthenticatorTOTPStageRequest; export declare function AuthenticatorTOTPStageRequestToJSONTyped(value?: AuthenticatorTOTPStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorTOTPStageRequest.d.ts.map