InputBotInlineMessageID
- class pyrogram.raw.types.InputBotInlineMessageID
Represents a sent inline message from the perspective of a bot (legacy constructor)
Constructor of
InputBotInlineMessageID.- Details:
Layer:
223ID:
890C3D89
- Parameters:
dc_id (
int32-bit) – DC ID to use when working with this inline messageid (
int64-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 (
int64-bit) – Access hash of message
TL Schema
inputBotInlineMessageID#890c3d89
dc_id:int
id:long
access_hash:long
= InputBotInlineMessageID
Parameter Tree
InputBotInlineMessageID
├── dc_id →
int├── id →
long└── access_hash →
longExample
InputBotInlineMessageID(
dc_id=0,
id=0,
access_hash=0,
)