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