/** * 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 PatchedDeviceAccessGroupRequest */ export interface PatchedDeviceAccessGroupRequest { /** * * @type {string} * @memberof PatchedDeviceAccessGroupRequest */ name?: string; /** * * @type {{ [key: string]: any; }} * @memberof PatchedDeviceAccessGroupRequest */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the PatchedDeviceAccessGroupRequest interface. */ export declare function instanceOfPatchedDeviceAccessGroupRequest(value: object): value is PatchedDeviceAccessGroupRequest; export declare function PatchedDeviceAccessGroupRequestFromJSON(json: any): PatchedDeviceAccessGroupRequest; export declare function PatchedDeviceAccessGroupRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedDeviceAccessGroupRequest; export declare function PatchedDeviceAccessGroupRequestToJSON(json: any): PatchedDeviceAccessGroupRequest; export declare function PatchedDeviceAccessGroupRequestToJSONTyped(value?: PatchedDeviceAccessGroupRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedDeviceAccessGroupRequest.d.ts.map