当前用户被移出聊天室事件的载荷。

interface ChatRoomRemovedFromChatRoomEventPayload {
    reason: number;
    chatRoomId: string;
    chatRoomName?: string;
    participant?: UserInfo;
}

Properties

reason: number

被移出的原因码。

chatRoomId: string

聊天室 ID。

chatRoomName?: string

聊天室名称。

participant?: UserInfo

触发移除操作的参与者资料。参与者可能是聊天室所有者或聊天室管理员。