1
0
telegram/unban_chat_member.go

34 lines
861 B
Go
Raw Normal View History

package telegram
import json "github.com/pquerna/ffjson/ffjson"
type UnbanChatMemberParameters struct {
// Unique identifier for the target chat
ChatID int64 `json:"chat_id"`
UserID int `json:"user_id"`
}
2017-10-06 07:55:54 +00:00
// UnbanChatMember unban a previously kicked user in a supergroup or channel. The
// user will not return to the group or channel automatically, but will be able
// to join via link, etc. The bot must be an administrator for this to work.
// Returns True on success.
func (bot *Bot) UnbanChatMember(chatID int64, userID int) (bool, error) {
dst, err := json.Marshal(&UnbanChatMemberParameters{
ChatID: chatID,
UserID: userID,
})
if err != nil {
return false, err
}
2018-04-12 11:58:05 +00:00
resp, err := bot.request(dst, MethodUnbanChatMember)
if err != nil {
2017-09-04 20:54:28 +00:00
return false, err
}
var data bool
err = json.Unmarshal(*resp.Result, &data)
return data, err
}