/** * 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 { UserVerificationEnum } from './UserVerificationEnum'; import type { NotConfiguredActionEnum } from './NotConfiguredActionEnum'; import type { FlowSetRequest } from './FlowSetRequest'; import type { DeviceClassesEnum } from './DeviceClassesEnum'; /** * AuthenticatorValidateStage Serializer * @export * @interface AuthenticatorValidateStageRequest */ export interface AuthenticatorValidateStageRequest { /** * * @type {string} * @memberof AuthenticatorValidateStageRequest */ name: string; /** * * @type {Array} * @memberof AuthenticatorValidateStageRequest */ flowSet?: Array; /** * * @type {NotConfiguredActionEnum} * @memberof AuthenticatorValidateStageRequest */ notConfiguredAction?: NotConfiguredActionEnum; /** * Device classes which can be used to authenticate * @type {Array} * @memberof AuthenticatorValidateStageRequest */ 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 AuthenticatorValidateStageRequest */ configurationStages?: Array; /** * If any of the user's device has been used within this threshold, this stage will be skipped * @type {string} * @memberof AuthenticatorValidateStageRequest */ lastAuthThreshold?: string; /** * Enforce user verification for WebAuthn devices. * @type {UserVerificationEnum} * @memberof AuthenticatorValidateStageRequest */ webauthnUserVerification?: UserVerificationEnum; /** * * @type {Array} * @memberof AuthenticatorValidateStageRequest */ webauthnAllowedDeviceTypes?: Array; } /** * Check if a given object implements the AuthenticatorValidateStageRequest interface. */ export declare function instanceOfAuthenticatorValidateStageRequest(value: object): value is AuthenticatorValidateStageRequest; export declare function AuthenticatorValidateStageRequestFromJSON(json: any): AuthenticatorValidateStageRequest; export declare function AuthenticatorValidateStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorValidateStageRequest; export declare function AuthenticatorValidateStageRequestToJSON(json: any): AuthenticatorValidateStageRequest; export declare function AuthenticatorValidateStageRequestToJSONTyped(value?: AuthenticatorValidateStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorValidateStageRequest.d.ts.map