/** * 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. */ /** * Stripped down group serializer to show relevant children/parents for groups * @export * @interface RelatedGroup */ export interface RelatedGroup { /** * * @type {string} * @memberof RelatedGroup */ readonly pk: string; /** * * @type {string} * @memberof RelatedGroup */ name: string; /** * Users added to this group will be superusers. * @type {boolean} * @memberof RelatedGroup */ isSuperuser?: boolean; /** * * @type {{ [key: string]: any; }} * @memberof RelatedGroup */ attributes?: { [key: string]: any; }; /** * * @type {string} * @memberof RelatedGroup */ readonly groupUuid: string; } /** * Check if a given object implements the RelatedGroup interface. */ export declare function instanceOfRelatedGroup(value: object): value is RelatedGroup; export declare function RelatedGroupFromJSON(json: any): RelatedGroup; export declare function RelatedGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelatedGroup; export declare function RelatedGroupToJSON(json: any): RelatedGroup; export declare function RelatedGroupToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RelatedGroup.d.ts.map