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