/** * 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 { DeviceClassesEnum } from './DeviceClassesEnum'; /** * Single device challenge * @export * @interface DeviceChallenge */ export interface DeviceChallenge { /** * * @type {DeviceClassesEnum} * @memberof DeviceChallenge */ deviceClass: DeviceClassesEnum; /** * * @type {string} * @memberof DeviceChallenge */ deviceUid: string; /** * * @type {{ [key: string]: any; }} * @memberof DeviceChallenge */ challenge: { [key: string]: any; }; /** * * @type {Date} * @memberof DeviceChallenge */ lastUsed: Date | null; } /** * Check if a given object implements the DeviceChallenge interface. */ export declare function instanceOfDeviceChallenge(value: object): value is DeviceChallenge; export declare function DeviceChallengeFromJSON(json: any): DeviceChallenge; export declare function DeviceChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceChallenge; export declare function DeviceChallengeToJSON(json: any): DeviceChallenge; export declare function DeviceChallengeToJSONTyped(value?: DeviceChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeviceChallenge.d.ts.map