messages.getFeaturedEmojiStickers
Gets featured custom emoji stickersets.
func (c *Client) MessagesGetFeaturedEmojiStickers(ctx context.Context, hash int64) (MessagesFeaturedStickersClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.MessagesGetFeaturedEmojiStickers(ctx, hash)
if err != nil {
return err
}
_ = res // MessagesFeaturedStickersClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Hash | int64 | yes | Hash used for caching, for more info click here. |
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
messages.getFeaturedEmojiStickers#ecf6736