/** * 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. */ /** * Group Serializer * @export * @interface GroupRequest */ export interface GroupRequest { /** * * @type {string} * @memberof GroupRequest */ name: string; /** * Users added to this group will be superusers. * @type {boolean} * @memberof GroupRequest */ isSuperuser?: boolean; /** * * @type {string} * @memberof GroupRequest */ parent?: string | null; /** * * @type {Array} * @memberof GroupRequest */ users?: Array; /** * * @type {{ [key: string]: any; }} * @memberof GroupRequest */ attributes?: { [key: string]: any; }; /** * * @type {Array} * @memberof GroupRequest */ roles?: Array; } /** * Check if a given object implements the GroupRequest interface. */ export declare function instanceOfGroupRequest(value: object): value is GroupRequest; export declare function GroupRequestFromJSON(json: any): GroupRequest; export declare function GroupRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupRequest; export declare function GroupRequestToJSON(json: any): GroupRequest; export declare function GroupRequestToJSONTyped(value?: GroupRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GroupRequest.d.ts.map