IConversationRoom interface
A room is a named conversation with an unlimited amount of members. Rooms has a wide variety of configuration options to control its behaviour.
Signature
export interface IConversationRoom extends IStoreItem
Properties
Property | Type | Description |
---|---|---|
createdAt | number | A timestamps given as the number of milliseconds elapsed since January 1, 1970 00:00:00 UTC. This is the same as returned by |
creatorId | UserId | The ID of the user who created the conversation. |
description | string | A description of the room, often stating the purpose of it. |
id | ConversationId | Uniquely identifies a conversation. |
memberCount | number | The number of members of the conversation, including the acting user. |
name | string | The name of the room. |
type | 'ROOM' |