Layer 220
MessagesSearchEmojiStickerSets
Search for custom emoji stickersets
method
Users
messages.searchEmojiStickerSets#92b4494c flags:# exclude_featured:flags.0?true q:string hash:long = messages.FoundStickerSets;
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| ExcludeFeatured | flags.0?true | Exclude featured stickersets from results |
| Q | string | Query string |
| Hash | long | Hash used for caching, for more info click here. |
Returns
messages.FoundStickerSetsGogram Example
// MessagesSearchEmojiStickerSets - using Params struct result, err := client.MessagesSearchEmojiStickerSets(&tg.MessagesSearchEmojiStickerSetsParams{ Q: "...", Hash: int64(0), // Optional fields: // ExcludeFeatured: true, }) if err != nil { // handle error } // result is *tg.MessagesFoundStickerSets