/** * 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. */ /** * Partial Group Serializer, does not include child relations. * @export * @interface PartialGroup */ export interface PartialGroup { /** * * @type {string} * @memberof PartialGroup */ readonly pk: string; /** * Get a numerical, int32 ID for the group * @type {number} * @memberof PartialGroup */ readonly numPk: number; /** * * @type {string} * @memberof PartialGroup */ name: string; /** * Users added to this group will be superusers. * @type {boolean} * @memberof PartialGroup */ isSuperuser?: boolean; /** * * @type {{ [key: string]: any; }} * @memberof PartialGroup */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the PartialGroup interface. */ export declare function instanceOfPartialGroup(value: object): value is PartialGroup; export declare function PartialGroupFromJSON(json: any): PartialGroup; export declare function PartialGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): PartialGroup; export declare function PartialGroupToJSON(json: any): PartialGroup; export declare function PartialGroupToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PartialGroup.d.ts.map