/** * 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 { DeviceFactSnapshot } from './DeviceFactSnapshot'; /** * * @export * @interface EndpointDevice */ export interface EndpointDevice { /** * * @type {string} * @memberof EndpointDevice */ deviceUuid?: string; /** * * @type {string} * @memberof EndpointDevice */ readonly pbmUuid: string; /** * * @type {string} * @memberof EndpointDevice */ name: string; /** * * @type {string} * @memberof EndpointDevice */ accessGroup?: string | null; /** * * @type {DeviceAccessGroup} * @memberof EndpointDevice */ accessGroupObj?: DeviceAccessGroup; /** * * @type {boolean} * @memberof EndpointDevice */ expiring?: boolean; /** * * @type {Date} * @memberof EndpointDevice */ expires?: Date | null; /** * * @type {DeviceFactSnapshot} * @memberof EndpointDevice */ readonly facts: DeviceFactSnapshot; /** * * @type {{ [key: string]: any; }} * @memberof EndpointDevice */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the EndpointDevice interface. */ export declare function instanceOfEndpointDevice(value: object): value is EndpointDevice; export declare function EndpointDeviceFromJSON(json: any): EndpointDevice; export declare function EndpointDeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointDevice; export declare function EndpointDeviceToJSON(json: any): EndpointDevice; export declare function EndpointDeviceToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EndpointDevice.d.ts.map