Layer 220
constructor
quickReply#697102b shortcut_id:int shortcut:string top_message:int count:int = QuickReply;

Parameters

Name Type Description
ShortcutId int Unique shortcut ID.
Shortcut string Shortcut name.
TopMessage int ID of the last message in the shortcut.
Count int Total number of messages in the shortcut.

Returns

QuickReply

Gogram Example

// Creating QuickReply constructor
obj := &tg.QuickReply{
    ShortcutId: 0,
    Shortcut: "...",
    TopMessage: 0,
    Count: 0,
}