messages.GetOutboxReadDate
- class pyrogram.raw.functions.messages.GetOutboxReadDate
Get the exact read date of one of our messages, sent to a private chat with another user.
- Details:
Layer:
223ID:
8C4BFE5D
- Parameters:
peer (
InputPeer) – The user to whom we sent the message.msg_id (
int32-bit) – The message ID.
- Returns:
TL Schema
messages.getOutboxReadDate#8c4bfe5d
peer:InputPeer
msg_id:int
= OutboxReadDate
Parameter Tree
GetOutboxReadDate
├── peer →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ │ └── chat_id →
long│ ├──
InputPeerUser│ │ ├── user_id →
long│ │ └── access_hash →
long│ ├──
InputPeerChannel│ │ ├── channel_id →
long│ │ └── access_hash →
long│ ├──
InputPeerUserFromMessage│ │ ├── peer →
InputPeer│ │ │ ├──
InputPeerEmpty│ │ │ ├──
InputPeerSelf│ │ │ ├──
InputPeerChat│ │ │ ├──
InputPeerUser│ │ │ ├──
InputPeerChannel│ │ │ ├──
InputPeerUserFromMessage│ │ │ └──
InputPeerChannelFromMessage│ │ ├── msg_id →
int│ │ └── user_id →
long│ ├── peer →
InputPeer│ │ ├──
InputPeerEmpty│ │ ├──
InputPeerSelf│ │ ├──
InputPeerChat│ │ ├──
InputPeerUser│ │ ├──
InputPeerChannel│ │ ├──
InputPeerUserFromMessage│ │ └──
InputPeerChannelFromMessage│ ├── msg_id →
int│ └── channel_id →
long└── msg_id →
intExample
await app.invoke(
GetOutboxReadDate(
peer=await app.resolve_peer(chat_id),
msg_id=0,
)
)