Safe Haskell | None |
---|---|
Language | Haskell2010 |
Web.Slack.Chat
Description
Synopsis
- data PostMsg = PostMsg {
- postMsgText :: Text
- postMsgParse :: Maybe Text
- postMsgLinkNames :: Maybe Bool
- postMsgAttachments :: Maybe Text
- postMsgUnfurlLinks :: Maybe Bool
- postMsgUnfurlMedia :: Maybe Bool
- postMsgUsername :: Maybe Text
- postMsgAsUser :: Maybe Bool
- postMsgIconUrl :: Maybe Text
- postMsgIconEmoji :: Maybe Text
- postMsgThreadTs :: Maybe Text
- postMsgReplyBroadcast :: Maybe Bool
- data PostMsgReq = PostMsgReq {
- postMsgReqChannel :: Text
- postMsgReqText :: Text
- postMsgReqParse :: Maybe Text
- postMsgReqLinkNames :: Maybe Bool
- postMsgReqAttachments :: Maybe Text
- postMsgReqUnfurlLinks :: Maybe Bool
- postMsgReqUnfurlMedia :: Maybe Bool
- postMsgReqUsername :: Maybe Text
- postMsgReqAsUser :: Maybe Bool
- postMsgReqIconUrl :: Maybe Text
- postMsgReqIconEmoji :: Maybe Text
- postMsgReqThreadTs :: Maybe Text
- postMsgReqReplyBroadcast :: Maybe Bool
- mkPostMsgReq :: Text -> Text -> PostMsgReq
- data PostMsgRsp = PostMsgRsp {}
Documentation
Constructors
PostMsg | |
Fields
|
Instances
data PostMsgReq Source #
Constructors
Instances
mkPostMsgReq :: Text -> Text -> PostMsgReq Source #
data PostMsgRsp Source #
Constructors
PostMsgRsp | |
Fields |
Instances
Eq PostMsgRsp Source # | |
Defined in Web.Slack.Chat | |
Show PostMsgRsp Source # | |
Defined in Web.Slack.Chat Methods showsPrec :: Int -> PostMsgRsp -> ShowS # show :: PostMsgRsp -> String # showList :: [PostMsgRsp] -> ShowS # | |
Generic PostMsgRsp Source # | |
Defined in Web.Slack.Chat Associated Types type Rep PostMsgRsp :: Type -> Type # | |
FromJSON PostMsgRsp Source # | |
Defined in Web.Slack.Chat | |
type Rep PostMsgRsp Source # | |
Defined in Web.Slack.Chat type Rep PostMsgRsp = D1 (MetaData "PostMsgRsp" "Web.Slack.Chat" "slack-web-0.2.0.9-7QvndQw9IfxMI407mdiak" False) (C1 (MetaCons "PostMsgRsp" PrefixI True) (S1 (MetaSel (Just "postMsgRspTs") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 String) :*: S1 (MetaSel (Just "postMsgRspMessage") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 PostMsg))) |