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