/** * 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 { FlowSet } from './FlowSet'; /** * AuthenticatorTOTPStage Serializer * @export * @interface AuthenticatorTOTPStage */ export interface AuthenticatorTOTPStage { /** * * @type {string} * @memberof AuthenticatorTOTPStage */ readonly pk: string; /** * * @type {string} * @memberof AuthenticatorTOTPStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof AuthenticatorTOTPStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof AuthenticatorTOTPStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof AuthenticatorTOTPStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof AuthenticatorTOTPStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof AuthenticatorTOTPStage */ 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 AuthenticatorTOTPStage */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorTOTPStage */ friendlyName?: string | null; /** * * @type {DigitsEnum} * @memberof AuthenticatorTOTPStage */ digits: DigitsEnum; } /** * Check if a given object implements the AuthenticatorTOTPStage interface. */ export declare function instanceOfAuthenticatorTOTPStage(value: object): value is AuthenticatorTOTPStage; export declare function AuthenticatorTOTPStageFromJSON(json: any): AuthenticatorTOTPStage; export declare function AuthenticatorTOTPStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorTOTPStage; export declare function AuthenticatorTOTPStageToJSON(json: any): AuthenticatorTOTPStage; export declare function AuthenticatorTOTPStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorTOTPStage.d.ts.map