NeahNew/node_modules/@keycloak/keycloak-admin-client/lib/defs/groupRepresentation.d.ts
2025-05-03 15:36:20 +02:00

15 lines
404 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[];
access?: Record<string, boolean>;
attributes?: Record<string, any>;
clientRoles?: Record<string, any>;
realmRoles?: string[];
}