/** * 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. */ /** * * @export * @interface DeviceGroup */ export interface DeviceGroup { /** * * @type {string} * @memberof DeviceGroup */ id: string; /** * * @type {string} * @memberof DeviceGroup */ name?: string; } /** * Check if a given object implements the DeviceGroup interface. */ export declare function instanceOfDeviceGroup(value: object): value is DeviceGroup; export declare function DeviceGroupFromJSON(json: any): DeviceGroup; export declare function DeviceGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceGroup; export declare function DeviceGroupToJSON(json: any): DeviceGroup; export declare function DeviceGroupToJSONTyped(value?: DeviceGroup | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeviceGroup.d.ts.map