Layer 220
constructor Business
updateBotEditBusinessMessage#7df587c flags:# connection_id:string message:Message reply_to_message:flags.0?Message qts:int = Update;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
ConnectionId string Business connection ID
Message Message New message.
ReplyToMessage flags.0?Message The message that message is replying to.
Qts int New qts value, see updates for more info.

Returns

Update

Gogram Example

// Creating UpdateBotEditBusinessMessage constructor
obj := &tg.UpdateBotEditBusinessMessage{
    ConnectionId: "...",
    Message: &tg.Message{},
    Qts: 0,

    // Optional fields:
    // ReplyToMessage: &tg.Message{},
}