Interface Member

Represents the membership of a user in a conversation

interface Member {
    channel?: MemberChannel;
    id: string;
    state?: MemberState;
    timestamp: Nullable<MemberTimestampJS>;
    user: Nullable<UserJS>;
}

Properties

channel?: MemberChannel

The member channel

id: string

The member id

state?: MemberState

The member state

timestamp: Nullable<MemberTimestampJS>

The member timestamp

user: Nullable<UserJS>

The user associated to the member