{-# LANGUAGE DataKinds #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeOperators #-}
module Telegram.Bot.API.Methods.UnbanChatSenderChat where
import Data.Proxy
import Servant.API
import Servant.Client hiding (Response)
import Telegram.Bot.API.MakingRequests
import Telegram.Bot.API.Types
type UnbanChatSenderChat = "unbanChatSenderChat"
:> RequiredQueryParam "chat_id" SomeChatId
:> RequiredQueryParam "sender_chat_id" ChatId
:> Post '[JSON] (Response Bool)
unbanChatSenderChat :: SomeChatId
-> ChatId
-> ClientM (Response Bool)
unbanChatSenderChat :: SomeChatId -> ChatId -> ClientM (Response Bool)
unbanChatSenderChat = forall api.
HasClient ClientM api =>
Proxy api -> Client ClientM api
client (forall {k} (t :: k). Proxy t
Proxy @UnbanChatSenderChat)