/** * 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. */ import type { Role } from './Role'; import type { GroupMember } from './GroupMember'; /** * Group Serializer * @export * @interface Group */ export interface Group { /** * * @type {string} * @memberof Group */ readonly pk: string; /** * * @type {number} * @memberof Group */ readonly numPk: number; /** * * @type {string} * @memberof Group */ name: string; /** * Users added to this group will be superusers. * @type {boolean} * @memberof Group */ isSuperuser?: boolean; /** * * @type {string} * @memberof Group */ parent?: string | null; /** * * @type {string} * @memberof Group */ readonly parentName: string | null; /** * * @type {Array} * @memberof Group */ users?: Array; /** * * @type {Array} * @memberof Group */ readonly usersObj: Array | null; /** * * @type {{ [key: string]: any; }} * @memberof Group */ attributes?: { [key: string]: any; }; /** * * @type {Array} * @memberof Group */ roles?: Array; /** * * @type {Array} * @memberof Group */ readonly rolesObj: Array; } /** * Check if a given object implements the Group interface. */ export declare function instanceOfGroup(value: object): value is Group; export declare function GroupFromJSON(json: any): Group; export declare function GroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): Group; export declare function GroupToJSON(json: any): Group; export declare function GroupToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Group.d.ts.map