/** * 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 { DeviceAccessGroup } from './DeviceAccessGroup'; import type { DeviceConnection } from './DeviceConnection'; import type { DeviceFactSnapshot } from './DeviceFactSnapshot'; /** * * @export * @interface EndpointDeviceDetails */ export interface EndpointDeviceDetails { /** * * @type {string} * @memberof EndpointDeviceDetails */ deviceUuid?: string; /** * * @type {string} * @memberof EndpointDeviceDetails */ readonly pbmUuid: string; /** * * @type {string} * @memberof EndpointDeviceDetails */ name: string; /** * * @type {string} * @memberof EndpointDeviceDetails */ accessGroup?: string | null; /** * * @type {DeviceAccessGroup} * @memberof EndpointDeviceDetails */ accessGroupObj?: DeviceAccessGroup; /** * * @type {boolean} * @memberof EndpointDeviceDetails */ expiring?: boolean; /** * * @type {Date} * @memberof EndpointDeviceDetails */ expires?: Date | null; /** * * @type {DeviceFactSnapshot} * @memberof EndpointDeviceDetails */ readonly facts: DeviceFactSnapshot; /** * * @type {{ [key: string]: any; }} * @memberof EndpointDeviceDetails */ attributes?: { [key: string]: any; }; /** * * @type {Array} * @memberof EndpointDeviceDetails */ connectionsObj: Array; /** * * @type {Array} * @memberof EndpointDeviceDetails */ readonly policies: Array; /** * * @type {Array} * @memberof EndpointDeviceDetails */ readonly connections: Array; } /** * Check if a given object implements the EndpointDeviceDetails interface. */ export declare function instanceOfEndpointDeviceDetails(value: object): value is EndpointDeviceDetails; export declare function EndpointDeviceDetailsFromJSON(json: any): EndpointDeviceDetails; export declare function EndpointDeviceDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointDeviceDetails; export declare function EndpointDeviceDetailsToJSON(json: any): EndpointDeviceDetails; export declare function EndpointDeviceDetailsToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EndpointDeviceDetails.d.ts.map