/** * 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'; /** * Serializer for Duo authenticator devices * @export * @interface DuoDevice */ export interface DuoDevice { /** * * @type {number} * @memberof DuoDevice */ readonly pk: number; /** * The human-readable name of this device. * @type {string} * @memberof DuoDevice */ name: string; /** * * @type {GroupMember} * @memberof DuoDevice */ readonly user: GroupMember; } /** * Check if a given object implements the DuoDevice interface. */ export declare function instanceOfDuoDevice(value: object): value is DuoDevice; export declare function DuoDeviceFromJSON(json: any): DuoDevice; export declare function DuoDeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): DuoDevice; export declare function DuoDeviceToJSON(json: any): DuoDevice; export declare function DuoDeviceToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DuoDevice.d.ts.map