ImageMessage can have optional Thumbnail Information and info is also optional

This commit is contained in:
Bernhard Tittelbach 2019-04-07 03:59:56 +02:00
parent 51f01ddc3d
commit 9f4eb0fd6d
1 changed files with 7 additions and 5 deletions

View File

@ -73,12 +73,14 @@ type VideoMessage struct {
Info VideoInfo `json:"info"`
}
// ImageMessage is an m.image event
// ImageMessage is an m.image event - http://matrix.org/docs/spec/client_server/r0.2.0.html#m-image
type ImageMessage struct {
MsgType string `json:"msgtype"`
Body string `json:"body"`
URL string `json:"url"`
Info ImageInfo `json:"info"`
MsgType string `json:"msgtype"`
Body string `json:"body"`
URL string `json:"url"`
Info ImageInfo `json:"info,omitempty"`
ThumbnailURL string `json:"thumbnail_url,omitempty"`
ThumbnailInfo ImageInfo `json:"thumbnail_info,omitempty"`
}
// An HTMLMessage is the contents of a Matrix HTML formated message event.