IMember interface
A participant in a conversation. It includes just some basic user information needed to display user information in non-user views. The user ID can be used to fetch more information about the user via the user service.
Signature
export interface IMember
Properties
Property | Type | Description |
---|---|---|
firstName | string | The first name of the user. |
fullName | string | The full name of the user. |
joinedAt | Timestamp | The point in time at which the user became a member of the conversation. |
lastName | string | The last name of the user. |
owner | boolean | Whether the user associated with the membership is an owner of the conversation. |
userId | UserId | The ID of the user associated with the membership. |