mirror of https://github.com/matrix-org/gomatrix
Changes to tags.go
This commit is contained in:
parent
c58e5d92a5
commit
2fe6744f03
11
tags.go
11
tags.go
|
@ -17,10 +17,19 @@ package gomatrix
|
|||
// TagContent contains the data for an m.tag message type
|
||||
// https://matrix.org/docs/spec/client_server/r0.4.0.html#m-tag
|
||||
type TagContent struct {
|
||||
Tags map[string]TagProperties `json:"tags"`
|
||||
Tags map[string]TagProperties `json:"tags,omitemmpty"`
|
||||
}
|
||||
|
||||
// TagProperties contains the properties of a Tag
|
||||
type TagProperties struct {
|
||||
Order float32 `json:"order,omitempty"` // Empty values must be neglected
|
||||
}
|
||||
|
||||
// TagData contains the entire data returned by the server
|
||||
type TagData struct {
|
||||
Content TagContent
|
||||
EventID string
|
||||
OriginServerTs int
|
||||
Sender string
|
||||
Type string
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue