You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x
UserGroup
User group object with id and name. UserGroup
export interface UserGroup {
'members'?: Array<Principal>;
'membersCount'?: number;
'name'?: string;
'uid'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
members | Optional | Array<Principal> | List of members {Array<Principal>} UserGroup |
membersCount | Optional | number | Number of members {number} UserGroup |
name | Optional | string | Name of the user {string} UserGroup |
uid | Optional | string | Unique user identifier {string} UserGroup |