From 2fe6744f03350a86ffab36b3ea5c6954a6917cb1 Mon Sep 17 00:00:00 2001 From: SUMUKHA-PK Date: Fri, 19 Jul 2019 21:27:06 +0530 Subject: [PATCH] Changes to tags.go --- tags.go | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tags.go b/tags.go index 956fb11..9c17882 100644 --- a/tags.go +++ b/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 +}