UpdateChannelUserTyping
- class pyrogram.raw.types.UpdateChannelUserTyping
A user is typing in a supergroup, channel or message thread
Constructor of
Update.- Details:
Layer:
223ID:
8C88C923
- Parameters:
channel_id (
int64-bit) – Channel IDfrom_id (
Peer) – The peer that is typingaction (
SendMessageAction) – Whether the user is typing, sending a media or doing something elsetop_msg_id (
int32-bit, optional) – Thread ID
TL Schema
updateChannelUserTyping#8c88c923
flags:#
channel_id:long
top_msg_id:flags.0?int
from_id:Peer
action:SendMessageAction
= Update
Parameter Tree
UpdateChannelUserTyping
├── channel_id →
long├── top_msg_id →
int (optional)├── from_id →
Peer│ ├──
PeerUser│ │ └── user_id →
long│ ├──
PeerChat│ │ └── chat_id →
long│ └──
PeerChannel│ └── channel_id →
long└── action →
SendMessageAction│ └── progress →
int│ └── progress →
int│ └── progress →
int│ └── progress →
int│ └── progress →
int│ └── progress →
int│ ├── emoticon →
string│ ├── msg_id →
int│ └── interaction →
DataJSON│ └──
DataJSON│ └── data →
string│ └── emoticon →
string├── random_id →
long└── text →
TextWithEntities└──
TextWithEntitiesExample
UpdateChannelUserTyping(
channel_id=0,
from_id=PeerUser(user_id=0),
action=SendMessageTypingAction(),
)