module TD.Query.GetDefaultChatEmojiStatuses
(GetDefaultChatEmojiStatuses(..)
) where
import qualified Data.Aeson as A
import qualified Data.Aeson.Types as AT
import qualified TD.Lib.Internal as I
data GetDefaultChatEmojiStatuses
= GetDefaultChatEmojiStatuses
deriving (GetDefaultChatEmojiStatuses -> GetDefaultChatEmojiStatuses -> Bool
(GetDefaultChatEmojiStatuses
-> GetDefaultChatEmojiStatuses -> Bool)
-> (GetDefaultChatEmojiStatuses
-> GetDefaultChatEmojiStatuses -> Bool)
-> Eq GetDefaultChatEmojiStatuses
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: GetDefaultChatEmojiStatuses -> GetDefaultChatEmojiStatuses -> Bool
== :: GetDefaultChatEmojiStatuses -> GetDefaultChatEmojiStatuses -> Bool
$c/= :: GetDefaultChatEmojiStatuses -> GetDefaultChatEmojiStatuses -> Bool
/= :: GetDefaultChatEmojiStatuses -> GetDefaultChatEmojiStatuses -> Bool
Eq, Int -> GetDefaultChatEmojiStatuses -> ShowS
[GetDefaultChatEmojiStatuses] -> ShowS
GetDefaultChatEmojiStatuses -> String
(Int -> GetDefaultChatEmojiStatuses -> ShowS)
-> (GetDefaultChatEmojiStatuses -> String)
-> ([GetDefaultChatEmojiStatuses] -> ShowS)
-> Show GetDefaultChatEmojiStatuses
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> GetDefaultChatEmojiStatuses -> ShowS
showsPrec :: Int -> GetDefaultChatEmojiStatuses -> ShowS
$cshow :: GetDefaultChatEmojiStatuses -> String
show :: GetDefaultChatEmojiStatuses -> String
$cshowList :: [GetDefaultChatEmojiStatuses] -> ShowS
showList :: [GetDefaultChatEmojiStatuses] -> ShowS
Show)
instance I.ShortShow GetDefaultChatEmojiStatuses where
shortShow :: GetDefaultChatEmojiStatuses -> String
shortShow
GetDefaultChatEmojiStatuses
GetDefaultChatEmojiStatuses
= String
"GetDefaultChatEmojiStatuses"
instance AT.ToJSON GetDefaultChatEmojiStatuses where
toJSON :: GetDefaultChatEmojiStatuses -> Value
toJSON
GetDefaultChatEmojiStatuses
GetDefaultChatEmojiStatuses
= [Pair] -> Value
A.object
[ Key
"@type" Key -> Value -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
forall v. ToJSON v => Key -> v -> Pair
A..= Text -> Value
AT.String Text
"getDefaultChatEmojiStatuses"
]