1
0
telegram/leave_chat.go

26 lines
580 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
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.
func (bot *Bot) LeaveChat(chatID int64) (bool, error) {
dst, err := json.Marshal(&LeaveChatParameters{ChatID: chatID})
if err != nil {
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 {
2017-09-04 20:54:28 +00:00
return false, err
2017-09-04 20:31:41 +00:00
}
var data bool
err = json.Unmarshal(*resp.Result, &data)
return data, err
}