mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 11:00:27 +00:00
36 lines
650 B
Go
36 lines
650 B
Go
|
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||
|
// See License.txt for license information.
|
||
|
|
||
|
package model
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
type TeamStats struct {
|
||
|
TeamId string `json:"team_id"`
|
||
|
TotalMemberCount int64 `json:"total_member_count"`
|
||
|
ActiveMemberCount int64 `json:"active_member_count"`
|
||
|
}
|
||
|
|
||
|
func (o *TeamStats) ToJson() string {
|
||
|
b, err := json.Marshal(o)
|
||
|
if err != nil {
|
||
|
return ""
|
||
|
} else {
|
||
|
return string(b)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TeamStatsFromJson(data io.Reader) *TeamStats {
|
||
|
decoder := json.NewDecoder(data)
|
||
|
var o TeamStats
|
||
|
err := decoder.Decode(&o)
|
||
|
if err == nil {
|
||
|
return &o
|
||
|
} else {
|
||
|
return nil
|
||
|
}
|
||
|
}
|