Layer 224
ChannelsSetEmojiStickers
Set a custom emoji stickerset for supergroups. Only usable after reaching at least the boost level specified in the group_emoji_stickers_level_min config parameter.
method
Users
Parameters
| Name | Type | Description |
|---|---|---|
| Channel | InputChannel | The supergroup |
| Stickerset | InputStickerSet | The custom emoji stickerset to associate to the supergroup |
Returns
BoolGogram Example
// ChannelsSetEmojiStickers - positional arguments result, err := client.ChannelsSetEmojiStickers(&tg.InputChannel{ChannelID: int64(1234567890), AccessHash: int64(5678901234567890)}, &tg.InputStickerSet{}) if err != nil { // handle error } // result is *tg.Bool
Possible Errors
| Code | Type | Description |
|---|---|---|
| 400 | CHANNEL_INVALID | The provided channel is invalid. |