/** * 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 DeviceChallengeRequest */ export interface DeviceChallengeRequest { /** * * @type {DeviceClassesEnum} * @memberof DeviceChallengeRequest */ deviceClass: DeviceClassesEnum; /** * * @type {string} * @memberof DeviceChallengeRequest */ deviceUid: string; /** * * @type {{ [key: string]: any; }} * @memberof DeviceChallengeRequest */ challenge: { [key: string]: any; }; /** * * @type {Date} * @memberof DeviceChallengeRequest */ lastUsed: Date | null; } /** * Check if a given object implements the DeviceChallengeRequest interface. */ export declare function instanceOfDeviceChallengeRequest(value: object): value is DeviceChallengeRequest; export declare function DeviceChallengeRequestFromJSON(json: any): DeviceChallengeRequest; export declare function DeviceChallengeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceChallengeRequest; export declare function DeviceChallengeRequestToJSON(json: any): DeviceChallengeRequest; export declare function DeviceChallengeRequestToJSONTyped(value?: DeviceChallengeRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeviceChallengeRequest.d.ts.map