1
0

Added DeleteChatStickerSet method

This commit is contained in:
Maxim Lebedev 2017-12-13 18:43:11 +05:00
parent 9d9b26fccf
commit e4e76c6450
No known key found for this signature in database
GPG Key ID: F8978F46FF0FFA4F

View File

@ -0,0 +1,26 @@
package telegram
import (
"strconv"
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
// DeleteChatStickerSet delete a group sticker set from a supergroup. The bot must be an administrator
// in the chat for this to work and must have the appropriate admin rights. Use the field
// can_set_sticker_set optionally returned in getChat requests to check if the bot can use this
// method. Returns True on success.
func (bot *Bot) DeleteChatStickerSet(chatID int64) (bool, error) {
var args http.Args
args.Add("chat_id", strconv.FormatInt(chatID, 10))
resp, err := bot.request(nil, "deleteChatStickerSet", &args)
if err != nil {
return false, err
}
var data bool
err = json.Unmarshal(*resp.Result, &data)
return data, err
}