/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { VendorEnum } from './VendorEnum'; import type { DeviceFacts } from './DeviceFacts'; /** * * @export * @interface DeviceFactSnapshot */ export interface DeviceFactSnapshot { /** * * @type {DeviceFacts} * @memberof DeviceFactSnapshot */ data: DeviceFacts; /** * * @type {string} * @memberof DeviceFactSnapshot */ connection: string; /** * * @type {Date} * @memberof DeviceFactSnapshot */ readonly created: Date; /** * * @type {Date} * @memberof DeviceFactSnapshot */ readonly expires: Date | null; /** * * @type {VendorEnum} * @memberof DeviceFactSnapshot */ readonly vendor: VendorEnum; } /** * Check if a given object implements the DeviceFactSnapshot interface. */ export declare function instanceOfDeviceFactSnapshot(value: object): value is DeviceFactSnapshot; export declare function DeviceFactSnapshotFromJSON(json: any): DeviceFactSnapshot; export declare function DeviceFactSnapshotFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceFactSnapshot; export declare function DeviceFactSnapshotToJSON(json: any): DeviceFactSnapshot; export declare function DeviceFactSnapshotToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeviceFactSnapshot.d.ts.map