/** * 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 { WebAuthnDeviceType } from './WebAuthnDeviceType'; import type { UserVerificationEnum } from './UserVerificationEnum'; import type { NotConfiguredActionEnum } from './NotConfiguredActionEnum'; import type { FlowSet } from './FlowSet'; import type { DeviceClassesEnum } from './DeviceClassesEnum'; /** * AuthenticatorValidateStage Serializer * @export * @interface AuthenticatorValidateStage */ export interface AuthenticatorValidateStage { /** * * @type {string} * @memberof AuthenticatorValidateStage */ readonly pk: string; /** * * @type {string} * @memberof AuthenticatorValidateStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof AuthenticatorValidateStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof AuthenticatorValidateStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof AuthenticatorValidateStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof AuthenticatorValidateStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof AuthenticatorValidateStage */ flowSet?: Array; /** * * @type {NotConfiguredActionEnum} * @memberof AuthenticatorValidateStage */ notConfiguredAction?: NotConfiguredActionEnum; /** * Device classes which can be used to authenticate * @type {Array} * @memberof AuthenticatorValidateStage */ deviceClasses?: Array; /** * Stages used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again. * @type {Array} * @memberof AuthenticatorValidateStage */ configurationStages?: Array; /** * If any of the user's device has been used within this threshold, this stage will be skipped * @type {string} * @memberof AuthenticatorValidateStage */ lastAuthThreshold?: string; /** * Enforce user verification for WebAuthn devices. * @type {UserVerificationEnum} * @memberof AuthenticatorValidateStage */ webauthnUserVerification?: UserVerificationEnum; /** * * @type {Array} * @memberof AuthenticatorValidateStage */ webauthnAllowedDeviceTypes?: Array; /** * * @type {Array} * @memberof AuthenticatorValidateStage */ readonly webauthnAllowedDeviceTypesObj: Array; } /** * Check if a given object implements the AuthenticatorValidateStage interface. */ export declare function instanceOfAuthenticatorValidateStage(value: object): value is AuthenticatorValidateStage; export declare function AuthenticatorValidateStageFromJSON(json: any): AuthenticatorValidateStage; export declare function AuthenticatorValidateStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorValidateStage; export declare function AuthenticatorValidateStageToJSON(json: any): AuthenticatorValidateStage; export declare function AuthenticatorValidateStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorValidateStage.d.ts.map