Add support for Type and Attachments in incoming webhooks

This commit is contained in:
Wim 2015-11-28 23:57:47 +01:00
parent 38fce68609
commit 5c1b02c7a3
1 changed files with 7 additions and 5 deletions

View File

@ -21,6 +21,8 @@ type OMessage struct {
IconEmoji string `json:"icon_emoji,omitempty"`
UserName string `json:"username,omitempty"`
Text string `json:"text"`
Attachments interface{} `json:"attachments,omitempty"`
Type string `json:"type,omitempty"`
}
// IMessage for mattermost outgoing webhook. (received from mattermost)