1
0
telegram/leave.go

24 lines
554 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.
2018-08-21 11:05:04 +00:00
func (bot *Bot) LeaveChat(chatID int64) (ok bool, err error) {
2019-07-24 09:34:55 +00:00
dst, err := parser.Marshal(&LeaveChatParameters{ChatID: chatID})
if err != nil {
2018-08-21 11:05:04 +00:00
return
}
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 {
2018-08-21 11:05:04 +00:00
return
2017-09-04 20:31:41 +00:00
}
2019-07-24 09:34:55 +00:00
err = parser.Unmarshal(resp.Result, &ok)
2018-08-21 11:05:04 +00:00
return
2017-09-04 20:31:41 +00:00
}