69497382d8
closes #22372 Co-authored-by: Erik Jan de Wit <erikjan.dewit@gmail.com> Co-authored-by: Pedro Igor <pigor.craveiro@gmail.com> Co-authored-by: Michal Hajas <mhajas@redhat.com>
17 lines
414 B
TypeScript
17 lines
414 B
TypeScript
/**
|
|
* https://www.keycloak.org/docs-api/11.0/rest-api/index.html#_grouprepresentation
|
|
*/
|
|
|
|
export default interface GroupRepresentation {
|
|
id?: string;
|
|
name?: string;
|
|
path?: string;
|
|
subGroupCount?: number;
|
|
subGroups?: GroupRepresentation[];
|
|
|
|
// optional in response
|
|
access?: Record<string, boolean>;
|
|
attributes?: Record<string, any>;
|
|
clientRoles?: Record<string, any>;
|
|
realmRoles?: string[];
|
|
}
|