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: 223

  • ID: 8C4BFE5D

Parameters:
  • peer (InputPeer) – The user to whom we sent the message.

  • msg_id (int 32-bit) – The message ID.

Returns:

OutboxReadDate

TL Schema

messages.getOutboxReadDate#8c4bfe5d
peer:InputPeer
msg_id:int

= OutboxReadDate

Parameter Tree

GetOutboxReadDate
├── peerInputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ │ └── chat_idlong
│ ├── InputPeerUser
│ │ ├── user_idlong
│ │ └── access_hashlong
│ ├── InputPeerChannel
│ │ ├── channel_idlong
│ │ └── access_hashlong
│ │ ├── peerInputPeer
│ │ │ ├── InputPeerEmpty
│ │ │ ├── InputPeerSelf
│ │ │ ├── InputPeerChat
│ │ │ ├── InputPeerUser
│ │ │ ├── InputPeerChannel
│ │ │ ├── InputPeerUserFromMessage
│ │ │ └── InputPeerChannelFromMessage
│ │ ├── msg_idint
│ │ └── user_idlong
│ ├── peerInputPeer
│ │ ├── InputPeerEmpty
│ │ ├── InputPeerSelf
│ │ ├── InputPeerChat
│ │ ├── InputPeerUser
│ │ ├── InputPeerChannel
│ │ ├── InputPeerUserFromMessage
│ │ └── InputPeerChannelFromMessage
│ ├── msg_idint
│ └── channel_idlong
└── msg_idint

Example

await app.invoke(
    GetOutboxReadDate(
        peer=await app.resolve_peer(chat_id),
        msg_id=0,
    )
)