/** * 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 { GroupMember } from './GroupMember'; import type { WebAuthnDeviceType } from './WebAuthnDeviceType'; /** * Serializer for WebAuthn authenticator devices * @export * @interface WebAuthnDevice */ export interface WebAuthnDevice { /** * * @type {number} * @memberof WebAuthnDevice */ readonly pk: number; /** * * @type {string} * @memberof WebAuthnDevice */ name: string; /** * * @type {Date} * @memberof WebAuthnDevice */ readonly createdOn: Date; /** * * @type {WebAuthnDeviceType} * @memberof WebAuthnDevice */ readonly deviceType: WebAuthnDeviceType | null; /** * * @type {string} * @memberof WebAuthnDevice */ readonly aaguid: string; /** * * @type {GroupMember} * @memberof WebAuthnDevice */ readonly user: GroupMember; } /** * Check if a given object implements the WebAuthnDevice interface. */ export declare function instanceOfWebAuthnDevice(value: object): value is WebAuthnDevice; export declare function WebAuthnDeviceFromJSON(json: any): WebAuthnDevice; export declare function WebAuthnDeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebAuthnDevice; export declare function WebAuthnDeviceToJSON(json: any): WebAuthnDevice; export declare function WebAuthnDeviceToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=WebAuthnDevice.d.ts.map