1
0
Fork 0
telegram/unpin.go

27 lines
751 B
Go
Raw Normal View History

package telegram
2018-04-19 13:02:15 +00:00
// UnpinChatMessageParameters represents data for UnpinChatMessage method.
type UnpinChatMessageParameters struct {
// Unique identifier for the target chat
ChatID int64 `json:"chat_id"`
}
2017-10-06 07:55:54 +00:00
// UnpinChatMessage unpin a message in a supergroup chat. The bot must be an
// administrator in the chat for this to work and must have the appropriate admin
// rights. Returns True on success.
2019-07-26 10:09:49 +00:00
func (bot *Bot) UnpinChatMessage(chatID int64) (bool, error) {
2019-07-24 09:34:55 +00:00
dst, err := parser.Marshal(&UnpinChatMessageParameters{ChatID: chatID})
if err != nil {
2019-07-26 10:09:49 +00:00
return false, err
}
2018-04-12 11:58:05 +00:00
resp, err := bot.request(dst, MethodUnpinChatMessage)
if err != nil {
2019-07-26 10:09:49 +00:00
return false, err
}
2019-07-26 10:09:49 +00:00
var ok bool
2019-07-24 09:34:55 +00:00
err = parser.Unmarshal(resp.Result, &ok)
2019-07-26 10:09:49 +00:00
return ok, err
}