1
0
Fork 0
telegram/leave.go

25 lines
590 B
Go
Raw Normal View History

2017-09-04 20:31:41 +00:00
package telegram
2018-04-19 13:02:15 +00:00
// LeaveChatParameters represents data for LeaveChat method.
type LeaveChatParameters struct {
// Unique identifier for the target chat
ChatID int64 `json:"chat_id"`
}
2017-09-04 20:31:41 +00:00
// LeaveChat leave a group, supergroup or channel. Returns True on success.
2019-07-26 10:09:49 +00:00
func (bot *Bot) LeaveChat(chatID int64) (bool, error) {
2019-07-24 09:34:55 +00:00
dst, err := parser.Marshal(&LeaveChatParameters{ChatID: chatID})
if err != nil {
2019-07-26 10:09:49 +00:00
return false, err
}
2017-09-04 20:31:41 +00:00
2018-04-12 11:58:05 +00:00
resp, err := bot.request(dst, MethodLeaveChat)
2017-09-04 20:31:41 +00:00
if err != nil {
2019-07-26 10:09:49 +00:00
return false, err
2017-09-04 20:31:41 +00:00
}
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
2017-09-04 20:31:41 +00:00
}