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