MsgDetailedInfo

class pyrogram.raw.types.MsgDetailedInfo

Telegram API type.

Constructor of MsgDetailedInfo.

Details:
  • Layer: 223

  • ID: 276D3EC6

Parameters:
  • msg_id (int 64-bit) – N/A

  • answer_msg_id (int 64-bit) – N/A

  • bytes (int 32-bit) – N/A

  • status (int 32-bit) – N/A

TL Schema

msg_detailed_info#276d3ec6
msg_id:long
answer_msg_id:long
bytes:int
status:int

= MsgDetailedInfo

Parameter Tree

MsgDetailedInfo
├── msg_idlong
├── answer_msg_idlong
├── bytesint
└── statusint

Example

MsgDetailedInfo(
    msg_id=0,
    answer_msg_id=0,
    bytes=0,
    status=0,
)