summaryrefslogtreecommitdiffstats
path: root/model/channel_stats.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/channel_stats.go')
-rw-r--r--model/channel_stats.go34
1 files changed, 34 insertions, 0 deletions
diff --git a/model/channel_stats.go b/model/channel_stats.go
new file mode 100644
index 000000000..079769eb0
--- /dev/null
+++ b/model/channel_stats.go
@@ -0,0 +1,34 @@
+// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package model
+
+import (
+ "encoding/json"
+ "io"
+)
+
+type ChannelStats struct {
+ ChannelId string `json:"channel_id"`
+ MemberCount int64 `json:"member_count"`
+}
+
+func (o *ChannelStats) ToJson() string {
+ b, err := json.Marshal(o)
+ if err != nil {
+ return ""
+ } else {
+ return string(b)
+ }
+}
+
+func ChannelStatsFromJson(data io.Reader) *ChannelStats {
+ decoder := json.NewDecoder(data)
+ var o ChannelStats
+ err := decoder.Decode(&o)
+ if err == nil {
+ return &o
+ } else {
+ return nil
+ }
+}