diff options
author | Wim <wim@42.be> | 2021-04-03 19:16:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-03 19:16:46 +0200 |
commit | 21eb37e471c338a90f2e23c86106f7e49e2d1196 (patch) | |
tree | e7d1cfa89f31fcf0578edae7727f2230bba744a2 /vendor/github.com/matterbridge/Rocket.Chat.Go.SDK/models | |
parent | d3b60cc445e5871971b543fde9483dba3924bf68 (diff) | |
download | matterbridge-msglm-21eb37e471c338a90f2e23c86106f7e49e2d1196.tar.gz matterbridge-msglm-21eb37e471c338a90f2e23c86106f7e49e2d1196.tar.bz2 matterbridge-msglm-21eb37e471c338a90f2e23c86106f7e49e2d1196.zip |
Update vendor (#1446)
* Update vendor
* Use upstream emoji lib again
Diffstat (limited to 'vendor/github.com/matterbridge/Rocket.Chat.Go.SDK/models')
-rw-r--r-- | vendor/github.com/matterbridge/Rocket.Chat.Go.SDK/models/message.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/vendor/github.com/matterbridge/Rocket.Chat.Go.SDK/models/message.go b/vendor/github.com/matterbridge/Rocket.Chat.Go.SDK/models/message.go index f3dc1c6f..6a82cdd1 100644 --- a/vendor/github.com/matterbridge/Rocket.Chat.Go.SDK/models/message.go +++ b/vendor/github.com/matterbridge/Rocket.Chat.Go.SDK/models/message.go @@ -77,8 +77,8 @@ type Attachment struct { // https://rocket.chat/docs/developer-guides/rest-api/chat/postmessage/ type AttachmentField struct { Short bool `json:"short"` - Title string `json:"title"` - Value string `json:"value"` + Title string `json:"title,omitempty"` + Value string `json:"value,omitempty"` } type AttachmentActionType string @@ -89,15 +89,15 @@ const ( // AttachmentAction are action buttons on message attachments type AttachmentAction struct { - Type AttachmentActionType `json:"type"` - Text string `json:"text"` - Url string `json:"url"` - ImageURL string `json:"image_url"` + Type AttachmentActionType `json:"type,omitempty"` + Text string `json:"text,omitempty"` + Url string `json:"url,omitempty"` + ImageURL string `json:"image_url,omitempty"` IsWebView bool `json:"is_webview"` - WebviewHeightRatio string `json:"webview_height_ratio"` - Msg string `json:"msg"` + WebviewHeightRatio string `json:"webview_height_ratio,omitempty"` + Msg string `json:"msg,omitempty"` MsgInChatWindow bool `json:"msg_in_chat_window"` - MsgProcessingType MessageProcessingType `json:"msg_processing_type"` + MsgProcessingType MessageProcessingType `json:"msg_processing_type,omitempty"` } // AttachmentActionButtonAlignment configures how the actions buttons will be aligned |