messages.searchStickerSets
Search for stickersets
func (c *Client) MessagesSearchStickerSets(ctx context.Context, request *MessagesSearchStickerSetsRequest) (MessagesFoundStickerSetsClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.MessagesSearchStickerSets(ctx, &tg.MessagesSearchStickerSetsRequest{
// see Parameters
})
if err != nil {
return err
}
_ = res // MessagesFoundStickerSetsClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ExcludeFeatured | bool | — | Exclude featured stickersets from results |
Q | string | yes | Query string |
Hash | int64 | yes | Hash used for caching, for more info click here. |
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
messages.searchStickerSets#35705b8a