/** * 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; attributes?: Record; clientRoles?: Record; realmRoles?: string[]; }