1
0
telegram/set_sticker_position_in_set.go

31 lines
775 B
Go
Raw Normal View History

package telegram
import json "github.com/pquerna/ffjson/ffjson"
2018-04-19 13:02:15 +00:00
// SetStickerPositionInSetParameters represents data for SetStickerPositionInSet
// method.
type SetStickerPositionInSetParameters struct {
Sticker string `json:"sticker"`
Position int `json:"position"`
}
2017-10-06 07:55:54 +00:00
// SetStickerPositionInSet move a sticker in a set created by the bot to a
// specific position. Returns True on success.
2018-08-21 11:05:04 +00:00
func (bot *Bot) SetStickerPositionInSet(sticker string, position int) (ok bool, err error) {
dst, err := json.Marshal(&SetStickerPositionInSetParameters{
Sticker: sticker,
Position: position,
})
if err != nil {
2018-08-21 11:05:04 +00:00
return
}
2018-04-12 11:58:05 +00:00
resp, err := bot.request(dst, MethodSetStickerPositionInSet)
if err != nil {
2018-08-21 11:05:04 +00:00
return
}
2018-08-21 11:05:04 +00:00
err = json.Unmarshal(*resp.Result, &ok)
return
}