/** * 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 { AuthenticatorAttachmentEnum } from './AuthenticatorAttachmentEnum'; import type { FlowSet } from './FlowSet'; import type { ResidentKeyRequirementEnum } from './ResidentKeyRequirementEnum'; /** * AuthenticatorWebAuthnStage Serializer * @export * @interface AuthenticatorWebAuthnStage */ export interface AuthenticatorWebAuthnStage { /** * * @type {string} * @memberof AuthenticatorWebAuthnStage */ readonly pk: string; /** * * @type {string} * @memberof AuthenticatorWebAuthnStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof AuthenticatorWebAuthnStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof AuthenticatorWebAuthnStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof AuthenticatorWebAuthnStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof AuthenticatorWebAuthnStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof AuthenticatorWebAuthnStage */ 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 AuthenticatorWebAuthnStage */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorWebAuthnStage */ friendlyName?: string | null; /** * * @type {UserVerificationEnum} * @memberof AuthenticatorWebAuthnStage */ userVerification?: UserVerificationEnum; /** * * @type {AuthenticatorAttachmentEnum} * @memberof AuthenticatorWebAuthnStage */ authenticatorAttachment?: AuthenticatorAttachmentEnum | null; /** * * @type {ResidentKeyRequirementEnum} * @memberof AuthenticatorWebAuthnStage */ residentKeyRequirement?: ResidentKeyRequirementEnum; /** * * @type {Array} * @memberof AuthenticatorWebAuthnStage */ deviceTypeRestrictions?: Array; /** * * @type {Array} * @memberof AuthenticatorWebAuthnStage */ readonly deviceTypeRestrictionsObj: Array; /** * * @type {number} * @memberof AuthenticatorWebAuthnStage */ maxAttempts?: number; } /** * Check if a given object implements the AuthenticatorWebAuthnStage interface. */ export declare function instanceOfAuthenticatorWebAuthnStage(value: object): value is AuthenticatorWebAuthnStage; export declare function AuthenticatorWebAuthnStageFromJSON(json: any): AuthenticatorWebAuthnStage; export declare function AuthenticatorWebAuthnStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorWebAuthnStage; export declare function AuthenticatorWebAuthnStageToJSON(json: any): AuthenticatorWebAuthnStage; export declare function AuthenticatorWebAuthnStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorWebAuthnStage.d.ts.map