/** * 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 { Connector } from './Connector'; import type { DeviceFactSnapshot } from './DeviceFactSnapshot'; /** * * @export * @interface DeviceConnection */ export interface DeviceConnection { /** * * @type {string} * @memberof DeviceConnection */ device: string; /** * * @type {string} * @memberof DeviceConnection */ connector: string; /** * * @type {Connector} * @memberof DeviceConnection */ readonly connectorObj: Connector; /** * * @type {DeviceFactSnapshot} * @memberof DeviceConnection */ readonly latestSnapshot: DeviceFactSnapshot | null; } /** * Check if a given object implements the DeviceConnection interface. */ export declare function instanceOfDeviceConnection(value: object): value is DeviceConnection; export declare function DeviceConnectionFromJSON(json: any): DeviceConnection; export declare function DeviceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceConnection; export declare function DeviceConnectionToJSON(json: any): DeviceConnection; export declare function DeviceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeviceConnection.d.ts.map