messages.getQuickReplies
Fetch basic info about all existing quick reply shortcuts.
func (c *Client) MessagesGetQuickReplies(ctx context.Context, hash int64) (MessagesQuickRepliesClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.MessagesGetQuickReplies(ctx, hash)
if err != nil {
return err
}
_ = res // MessagesQuickRepliesClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Hash | int64 | yes | Hash for pagination, generated as specified here » (not the usual algorithm used for hash generation.) |
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
messages.getQuickReplies#d483f2a8