module TD.Query.RemovePendingPaidMessageReactions
  (RemovePendingPaidMessageReactions(..)
  , defaultRemovePendingPaidMessageReactions
  ) where

import qualified Data.Aeson as A
import qualified Data.Aeson.Types as AT
import qualified TD.Lib.Internal as I

-- | Removes all pending paid reactions on a message. Returns 'TD.Data.Ok.Ok'
data RemovePendingPaidMessageReactions
  = RemovePendingPaidMessageReactions
    { RemovePendingPaidMessageReactions -> Maybe Int
chat_id    :: Maybe Int -- ^ Identifier of the chat to which the message belongs
    , RemovePendingPaidMessageReactions -> Maybe Int
message_id :: Maybe Int -- ^ Identifier of the message
    }
  deriving (RemovePendingPaidMessageReactions
-> RemovePendingPaidMessageReactions -> Bool
(RemovePendingPaidMessageReactions
 -> RemovePendingPaidMessageReactions -> Bool)
-> (RemovePendingPaidMessageReactions
    -> RemovePendingPaidMessageReactions -> Bool)
-> Eq RemovePendingPaidMessageReactions
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: RemovePendingPaidMessageReactions
-> RemovePendingPaidMessageReactions -> Bool
== :: RemovePendingPaidMessageReactions
-> RemovePendingPaidMessageReactions -> Bool
$c/= :: RemovePendingPaidMessageReactions
-> RemovePendingPaidMessageReactions -> Bool
/= :: RemovePendingPaidMessageReactions
-> RemovePendingPaidMessageReactions -> Bool
Eq, Int -> RemovePendingPaidMessageReactions -> ShowS
[RemovePendingPaidMessageReactions] -> ShowS
RemovePendingPaidMessageReactions -> String
(Int -> RemovePendingPaidMessageReactions -> ShowS)
-> (RemovePendingPaidMessageReactions -> String)
-> ([RemovePendingPaidMessageReactions] -> ShowS)
-> Show RemovePendingPaidMessageReactions
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> RemovePendingPaidMessageReactions -> ShowS
showsPrec :: Int -> RemovePendingPaidMessageReactions -> ShowS
$cshow :: RemovePendingPaidMessageReactions -> String
show :: RemovePendingPaidMessageReactions -> String
$cshowList :: [RemovePendingPaidMessageReactions] -> ShowS
showList :: [RemovePendingPaidMessageReactions] -> ShowS
Show)

instance I.ShortShow RemovePendingPaidMessageReactions where
  shortShow :: RemovePendingPaidMessageReactions -> String
shortShow
    RemovePendingPaidMessageReactions
      { chat_id :: RemovePendingPaidMessageReactions -> Maybe Int
chat_id    = Maybe Int
chat_id_
      , message_id :: RemovePendingPaidMessageReactions -> Maybe Int
message_id = Maybe Int
message_id_
      }
        = String
"RemovePendingPaidMessageReactions"
          String -> ShowS
forall a. [a] -> [a] -> [a]
++ [String] -> String
I.cc
          [ String
"chat_id"    String -> Maybe Int -> String
forall a. ShortShow a => String -> Maybe a -> String
`I.p` Maybe Int
chat_id_
          , String
"message_id" String -> Maybe Int -> String
forall a. ShortShow a => String -> Maybe a -> String
`I.p` Maybe Int
message_id_
          ]

instance AT.ToJSON RemovePendingPaidMessageReactions where
  toJSON :: RemovePendingPaidMessageReactions -> Value
toJSON
    RemovePendingPaidMessageReactions
      { chat_id :: RemovePendingPaidMessageReactions -> Maybe Int
chat_id    = Maybe Int
chat_id_
      , message_id :: RemovePendingPaidMessageReactions -> Maybe Int
message_id = Maybe Int
message_id_
      }
        = [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
"removePendingPaidMessageReactions"
          , Key
"chat_id"    Key -> Maybe Int -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
forall v. ToJSON v => Key -> v -> Pair
A..= Maybe Int
chat_id_
          , Key
"message_id" Key -> Maybe Int -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
forall v. ToJSON v => Key -> v -> Pair
A..= Maybe Int
message_id_
          ]

defaultRemovePendingPaidMessageReactions :: RemovePendingPaidMessageReactions
defaultRemovePendingPaidMessageReactions :: RemovePendingPaidMessageReactions
defaultRemovePendingPaidMessageReactions =
  RemovePendingPaidMessageReactions
    { chat_id :: Maybe Int
chat_id    = Maybe Int
forall a. Maybe a
Nothing
    , message_id :: Maybe Int
message_id = Maybe Int
forall a. Maybe a
Nothing
    }