Interface UpdateChatAction

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

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

Properties

@type: "updateChatAction"
action: ChatAction

The action.

chat_id: number

Chat identifier.

sender_id: MessageSender

Identifier of a message sender performing the action.

topic_id: MessageTopic

Identifier of the specific topic in which the action was performed; may be null if none.