{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeOperators #-}
module Telegram.Bot.API.Methods.SetChatMenuButton where
import Data.Aeson (FromJSON (..), ToJSON (..))
import Data.Proxy
import GHC.Generics (Generic)
import Servant.API
import Servant.Client hiding (Response)
import Telegram.Bot.API.Internal.Utils
import Telegram.Bot.API.MakingRequests
import Telegram.Bot.API.Types
data =
{ :: Maybe ChatId
, :: Maybe MenuButton
}
deriving forall x.
Rep SetChatMenuButtonRequest x -> SetChatMenuButtonRequest
forall x.
SetChatMenuButtonRequest -> Rep SetChatMenuButtonRequest x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep SetChatMenuButtonRequest x -> SetChatMenuButtonRequest
$cfrom :: forall x.
SetChatMenuButtonRequest -> Rep SetChatMenuButtonRequest x
Generic
instance ToJSON SetChatMenuButtonRequest where toJSON :: SetChatMenuButtonRequest -> Value
toJSON = forall a (d :: Meta) (f :: * -> *).
(Generic a, GToJSON Zero (Rep a), Rep a ~ D1 d f, Datatype d) =>
a -> Value
gtoJSON
instance FromJSON SetChatMenuButtonRequest where parseJSON :: Value -> Parser SetChatMenuButtonRequest
parseJSON = forall a (d :: Meta) (f :: * -> *).
(Generic a, GFromJSON Zero (Rep a), Rep a ~ D1 d f, Datatype d) =>
Value -> Parser a
gparseJSON
type = "setChatMenuButton"
:> ReqBody '[JSON] SetChatMenuButtonRequest
:> Post '[JSON] (Response Bool)
setChatMenuButton :: SetChatMenuButtonRequest -> ClientM (Response Bool)
= forall api.
HasClient ClientM api =>
Proxy api -> Client ClientM api
client (forall {k} (t :: k). Proxy t
Proxy @SetChatMenuButton)