Activity
channel activity recorded in message history for when for example a user joined, left, called etc
similar to all events in ChannelEventMap
interface Activity {
data?: any;
event: string;
scope: string;
sender: string;
}
index
Properties
data ?
activity data same as ChannelEventMap
any
event
event type
string
scope
scope of event can be 'call' | 'colab' | 'user' | 'channel' or custom depending of event and config
string
sender
user who triggered event. i.e user who deleted the given users or started a call
string