Alokai
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

NameRequiredTypeDescription
membersOptionalArray<Principal>List of members {Array<Principal>} UserGroup
membersCountOptionalnumberNumber of members {number} UserGroup
nameOptionalstringName of the user {string} UserGroup
uidOptionalstringUnique user identifier {string} UserGroup

Referenced Types

On this page