InputBotInlineMessageID

class pyrogram.raw.types.InputBotInlineMessageID

Represents a sent inline message from the perspective of a bot (legacy constructor)

Constructor of InputBotInlineMessageID.

Details:
  • Layer: 223

  • ID: 890C3D89

Parameters:
  • dc_id (int 32-bit) – DC ID to use when working with this inline message

  • id (int 64-bit) – ID of message, contains both the (32-bit, legacy) owner ID and the message ID, used only for Bot API backwards compatibility with 32-bit user ID.

  • access_hash (int 64-bit) – Access hash of message

TL Schema

inputBotInlineMessageID#890c3d89
dc_id:int
id:long
access_hash:long

= InputBotInlineMessageID

Parameter Tree

InputBotInlineMessageID
├── dc_idint
├── idlong
└── access_hashlong

Example

InputBotInlineMessageID(
    dc_id=0,
    id=0,
    access_hash=0,
)