Layer 224
method Users
messages.getQuickReplyMessages#94a495c3 flags:# shortcut_id:int id:flags.0?Vector<int> hash:long = messages.Messages;

Parameters

Name Type Description
ShortcutId int Quick reply shortcut ID.
Id Vector<int> IDs of the messages to fetch, if empty fetches all of them.
Hash long Hash for pagination, generated as specified here (not the usual algorithm used for hash generation).

Gogram Example

// MessagesGetQuickReplyMessages - using Params struct
result, err := client.MessagesGetQuickReplyMessages(&tg.MessagesGetQuickReplyMessagesParams{
    ShortcutId: 42,
    Hash: int64(1234567890),

    // Optional fields:
    // Id: []int{},
})
if err != nil {
    // handle error
}
// result is *tg.MessagesMessages

Possible Errors

Code Type Description
400 SHORTCUT_INVALID The specified shortcut is invalid.