/** * 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 PatchedAuthenticatorTOTPStageRequest */ export interface PatchedAuthenticatorTOTPStageRequest { /** * * @type {string} * @memberof PatchedAuthenticatorTOTPStageRequest */ name?: string; /** * * @type {Array} * @memberof PatchedAuthenticatorTOTPStageRequest */ 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 PatchedAuthenticatorTOTPStageRequest */ configureFlow?: string | null; /** * * @type {string} * @memberof PatchedAuthenticatorTOTPStageRequest */ friendlyName?: string | null; /** * * @type {DigitsEnum} * @memberof PatchedAuthenticatorTOTPStageRequest */ digits?: DigitsEnum; } /** * Check if a given object implements the PatchedAuthenticatorTOTPStageRequest interface. */ export declare function instanceOfPatchedAuthenticatorTOTPStageRequest(value: object): value is PatchedAuthenticatorTOTPStageRequest; export declare function PatchedAuthenticatorTOTPStageRequestFromJSON(json: any): PatchedAuthenticatorTOTPStageRequest; export declare function PatchedAuthenticatorTOTPStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedAuthenticatorTOTPStageRequest; export declare function PatchedAuthenticatorTOTPStageRequestToJSON(json: any): PatchedAuthenticatorTOTPStageRequest; export declare function PatchedAuthenticatorTOTPStageRequestToJSONTyped(value?: PatchedAuthenticatorTOTPStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedAuthenticatorTOTPStageRequest.d.ts.map