Represents the membership of a user in a conversation
interface Member { state: "INVITED" | "JOINED" | "LEFT" | "UNKNOWN"; get channel(): Nullable<MemberChannelJS>; get id(): string; get timestamp(): Nullable<MemberTimestampJS>; get user(): Nullable<UserJS>; }
Represents the membership of a user in a conversation