interface KeycloakGroupRepresentation {
    access?: Record<string, boolean>;
    attributes?: Record<string, string[]>;
    clientRoles?: Record<string, string[]>;
    id?: string;
    name?: string;
    path?: string;
    realmRoles?: string[];
    subGroups?: KeycloakGroupRepresentation[];
}

Hierarchy (view full)

Properties

access?: Record<string, boolean>
attributes?: Record<string, string[]>
clientRoles?: Record<string, string[]>
id?: string
name?: string
path?: string
realmRoles?: string[]