/** * 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 DeviceAccessGroup */ export interface DeviceAccessGroup { /** * * @type {string} * @memberof DeviceAccessGroup */ readonly pbmUuid: string; /** * * @type {string} * @memberof DeviceAccessGroup */ name: string; /** * * @type {{ [key: string]: any; }} * @memberof DeviceAccessGroup */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the DeviceAccessGroup interface. */ export declare function instanceOfDeviceAccessGroup(value: object): value is DeviceAccessGroup; export declare function DeviceAccessGroupFromJSON(json: any): DeviceAccessGroup; export declare function DeviceAccessGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceAccessGroup; export declare function DeviceAccessGroupToJSON(json: any): DeviceAccessGroup; export declare function DeviceAccessGroupToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeviceAccessGroup.d.ts.map