1
0
telegram/leave_chat.go

26 lines
599 B
Go
Raw Normal View History

2017-09-04 20:31:41 +00:00
package telegram
import json "github.com/pquerna/ffjson/ffjson"
2017-09-04 20:54:28 +00:00
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) {
dst, err := json.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
}
2018-08-21 11:05:04 +00:00
err = json.Unmarshal(*resp.Result, &ok)
return
2017-09-04 20:31:41 +00:00
}