/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * 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. */ /** * Simplified Group Serializer for user's groups * @export * @interface UserGroup */ export interface UserGroup { /** * * @type {string} * @memberof UserGroup */ readonly pk: string; /** * Get a numerical, int32 ID for the group * @type {number} * @memberof UserGroup */ readonly numPk: number; /** * * @type {string} * @memberof UserGroup */ name: string; /** * Users added to this group will be superusers. * @type {boolean} * @memberof UserGroup */ isSuperuser?: boolean; /** * * @type {string} * @memberof UserGroup */ parent?: string | null; /** * * @type {string} * @memberof UserGroup */ readonly parentName: string | null; /** * * @type {{ [key: string]: any; }} * @memberof UserGroup */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the UserGroup interface. */ export declare function instanceOfUserGroup(value: object): value is UserGroup; export declare function UserGroupFromJSON(json: any): UserGroup; export declare function UserGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserGroup; export declare function UserGroupToJSON(json: any): UserGroup; export declare function UserGroupToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserGroup.d.ts.map