messages.getOldFeaturedStickers
Method for fetching previously featured stickers
func (c *Client) MessagesGetOldFeaturedStickers(ctx context.Context, request *MessagesGetOldFeaturedStickersRequest) (MessagesFeaturedStickersClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.MessagesGetOldFeaturedStickers(ctx, &tg.MessagesGetOldFeaturedStickersRequest{
// see Parameters
})
if err != nil {
return err
}
_ = res // MessagesFeaturedStickersClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Offset | int | yes | Offset |
Limit | int | yes | Maximum number of results to return, see pagination |
Hash | int64 | yes | Hash used for caching, for more info click here. |
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
messages.getOldFeaturedStickers#7ed094a1