mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 21:07:47 +01:00
921 B
921 B
title | description |
---|---|
updateChatUserTyping | updateChatUserTyping attributes, type and example |
Constructor: updateChatUserTyping
Attributes:
Name | Type | Required |
---|---|---|
chat_id | int | Yes |
user_id | int | Yes |
action | SendMessageAction | Yes |
Type: Update
Example:
$updateChatUserTyping = ['_' => 'updateChatUserTyping', 'chat_id' => int, 'user_id' => int, 'action' => SendMessageAction, ];
PWRTelegram json-encoded version:
{"_":"updateChatUserTyping","chat_id":"int","user_id":"int","action":"SendMessageAction"}
Or, if you're into Lua:
updateChatUserTyping={_='updateChatUserTyping', chat_id=int, user_id=int, action=SendMessageAction, }