Interface UpdateChatAction

A message sender activity in the chat has changed. Subtype of Update.

interface UpdateChatAction {
    @type: "updateChatAction";
    action: ChatAction;
    chat_id: number;
    message_thread_id: number;
    sender_id: MessageSender;
}

Properties

@type: "updateChatAction"
action: ChatAction

The action.

chat_id: number

Chat identifier.

message_thread_id: number

If not 0, the message thread identifier in which the action was performed.

sender_id: MessageSender

Identifier of a message sender performing the action.