/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; import type { WebAuthnDeviceType } from './WebAuthnDeviceType'; import { WebAuthnDeviceTypeFromJSON, WebAuthnDeviceTypeFromJSONTyped, WebAuthnDeviceTypeToJSON, WebAuthnDeviceTypeToJSONTyped, } from './WebAuthnDeviceType'; import type { UserVerificationEnum } from './UserVerificationEnum'; import { UserVerificationEnumFromJSON, UserVerificationEnumFromJSONTyped, UserVerificationEnumToJSON, UserVerificationEnumToJSONTyped, } from './UserVerificationEnum'; import type { AuthenticatorAttachmentEnum } from './AuthenticatorAttachmentEnum'; import { AuthenticatorAttachmentEnumFromJSON, AuthenticatorAttachmentEnumFromJSONTyped, AuthenticatorAttachmentEnumToJSON, AuthenticatorAttachmentEnumToJSONTyped, } from './AuthenticatorAttachmentEnum'; import type { FlowSet } from './FlowSet'; import { FlowSetFromJSON, FlowSetFromJSONTyped, FlowSetToJSON, FlowSetToJSONTyped, } from './FlowSet'; import type { ResidentKeyRequirementEnum } from './ResidentKeyRequirementEnum'; import { ResidentKeyRequirementEnumFromJSON, ResidentKeyRequirementEnumFromJSONTyped, ResidentKeyRequirementEnumToJSON, ResidentKeyRequirementEnumToJSONTyped, } 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 function instanceOfAuthenticatorWebAuthnStage(value: object): value is AuthenticatorWebAuthnStage { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('name' in value) || value['name'] === undefined) return false; if (!('component' in value) || value['component'] === undefined) return false; if (!('verboseName' in value) || value['verboseName'] === undefined) return false; if (!('verboseNamePlural' in value) || value['verboseNamePlural'] === undefined) return false; if (!('metaModelName' in value) || value['metaModelName'] === undefined) return false; if (!('deviceTypeRestrictionsObj' in value) || value['deviceTypeRestrictionsObj'] === undefined) return false; return true; } export function AuthenticatorWebAuthnStageFromJSON(json: any): AuthenticatorWebAuthnStage { return AuthenticatorWebAuthnStageFromJSONTyped(json, false); } export function AuthenticatorWebAuthnStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorWebAuthnStage { if (json == null) { return json; } return { 'pk': json['pk'], 'name': json['name'], 'component': json['component'], 'verboseName': json['verbose_name'], 'verboseNamePlural': json['verbose_name_plural'], 'metaModelName': json['meta_model_name'], 'flowSet': json['flow_set'] == null ? undefined : ((json['flow_set'] as Array).map(FlowSetFromJSON)), 'configureFlow': json['configure_flow'] == null ? undefined : json['configure_flow'], 'friendlyName': json['friendly_name'] == null ? undefined : json['friendly_name'], 'userVerification': json['user_verification'] == null ? undefined : UserVerificationEnumFromJSON(json['user_verification']), 'authenticatorAttachment': json['authenticator_attachment'] == null ? undefined : AuthenticatorAttachmentEnumFromJSON(json['authenticator_attachment']), 'residentKeyRequirement': json['resident_key_requirement'] == null ? undefined : ResidentKeyRequirementEnumFromJSON(json['resident_key_requirement']), 'deviceTypeRestrictions': json['device_type_restrictions'] == null ? undefined : json['device_type_restrictions'], 'deviceTypeRestrictionsObj': ((json['device_type_restrictions_obj'] as Array).map(WebAuthnDeviceTypeFromJSON)), 'maxAttempts': json['max_attempts'] == null ? undefined : json['max_attempts'], }; } export function AuthenticatorWebAuthnStageToJSON(json: any): AuthenticatorWebAuthnStage { return AuthenticatorWebAuthnStageToJSONTyped(json, false); } export function AuthenticatorWebAuthnStageToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'flow_set': value['flowSet'] == null ? undefined : ((value['flowSet'] as Array).map(FlowSetToJSON)), 'configure_flow': value['configureFlow'], 'friendly_name': value['friendlyName'], 'user_verification': UserVerificationEnumToJSON(value['userVerification']), 'authenticator_attachment': AuthenticatorAttachmentEnumToJSON(value['authenticatorAttachment']), 'resident_key_requirement': ResidentKeyRequirementEnumToJSON(value['residentKeyRequirement']), 'device_type_restrictions': value['deviceTypeRestrictions'], 'max_attempts': value['maxAttempts'], }; }