Layer 220
constructor
inputBotInlineMessageID64#b6d915d7 dc_id:int owner_id:long id:int access_hash:long = InputBotInlineMessageID;

Parameters

Name Type Description
DcId int DC ID to use when working with this inline message
OwnerId long ID of the owner of this message
Id int ID of message
AccessHash long Access hash of message

Gogram Example

// Creating InputBotInlineMessageId64 constructor
obj := &tg.InputBotInlineMessageId64{
    DcId: 0,
    OwnerId: int64(0),
    Id: 0,
    AccessHash: int64(0),
}