{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TemplateHaskell #-}

----------------------------------------------------------------------
-- |
-- Module: Web.Slack.Api
-- Description:
--
--
--
----------------------------------------------------------------------


module Web.Slack.Api
  ( TestReq(..)
  , mkTestReq
  , TestRsp(..)
  )
  where

-- aeson
import Data.Aeson.TH

-- base
import GHC.Generics (Generic)

-- deepseq
import Control.DeepSeq (NFData)

-- http-api-data
import Web.FormUrlEncoded

-- slack-web
import Web.Slack.Util

-- text
import Data.Text (Text)


-- |
--
--

data TestReq =
  TestReq
    { TestReq -> Maybe Text
testReqError :: Maybe Text
    , TestReq -> Maybe Text
testReqFoo :: Maybe Text
    }
  deriving (TestReq -> TestReq -> Bool
(TestReq -> TestReq -> Bool)
-> (TestReq -> TestReq -> Bool) -> Eq TestReq
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: TestReq -> TestReq -> Bool
$c/= :: TestReq -> TestReq -> Bool
== :: TestReq -> TestReq -> Bool
$c== :: TestReq -> TestReq -> Bool
Eq, (forall x. TestReq -> Rep TestReq x)
-> (forall x. Rep TestReq x -> TestReq) -> Generic TestReq
forall x. Rep TestReq x -> TestReq
forall x. TestReq -> Rep TestReq x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep TestReq x -> TestReq
$cfrom :: forall x. TestReq -> Rep TestReq x
Generic, Int -> TestReq -> ShowS
[TestReq] -> ShowS
TestReq -> String
(Int -> TestReq -> ShowS)
-> (TestReq -> String) -> ([TestReq] -> ShowS) -> Show TestReq
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [TestReq] -> ShowS
$cshowList :: [TestReq] -> ShowS
show :: TestReq -> String
$cshow :: TestReq -> String
showsPrec :: Int -> TestReq -> ShowS
$cshowsPrec :: Int -> TestReq -> ShowS
Show)

instance NFData TestReq


-- |
--
--

$(deriveJSON (jsonOpts "testReq") ''TestReq)


-- |
--
--

instance ToForm TestReq where
  toForm :: TestReq -> Form
toForm =
    FormOptions -> TestReq -> Form
forall a.
(Generic a, GToForm a (Rep a)) =>
FormOptions -> a -> Form
genericToForm (Text -> FormOptions
formOpts Text
"testReq")


-- |
--
--

mkTestReq :: TestReq
mkTestReq :: TestReq
mkTestReq =
  TestReq :: Maybe Text -> Maybe Text -> TestReq
TestReq
    { testReqError :: Maybe Text
testReqError = Maybe Text
forall a. Maybe a
Nothing
    , testReqFoo :: Maybe Text
testReqFoo = Maybe Text
forall a. Maybe a
Nothing
    }


-- |
--
--

data TestRsp =
  TestRsp
    { TestRsp -> Maybe TestReq
testRspArgs :: Maybe TestReq
    }
  deriving (TestRsp -> TestRsp -> Bool
(TestRsp -> TestRsp -> Bool)
-> (TestRsp -> TestRsp -> Bool) -> Eq TestRsp
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: TestRsp -> TestRsp -> Bool
$c/= :: TestRsp -> TestRsp -> Bool
== :: TestRsp -> TestRsp -> Bool
$c== :: TestRsp -> TestRsp -> Bool
Eq, (forall x. TestRsp -> Rep TestRsp x)
-> (forall x. Rep TestRsp x -> TestRsp) -> Generic TestRsp
forall x. Rep TestRsp x -> TestRsp
forall x. TestRsp -> Rep TestRsp x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep TestRsp x -> TestRsp
$cfrom :: forall x. TestRsp -> Rep TestRsp x
Generic, Int -> TestRsp -> ShowS
[TestRsp] -> ShowS
TestRsp -> String
(Int -> TestRsp -> ShowS)
-> (TestRsp -> String) -> ([TestRsp] -> ShowS) -> Show TestRsp
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [TestRsp] -> ShowS
$cshowList :: [TestRsp] -> ShowS
show :: TestRsp -> String
$cshow :: TestRsp -> String
showsPrec :: Int -> TestRsp -> ShowS
$cshowsPrec :: Int -> TestRsp -> ShowS
Show)

instance NFData TestRsp

-- |
--
--
$(deriveFromJSON (jsonOpts "testRsp") ''TestRsp)