36 lines
658 B
Go
36 lines
658 B
Go
// Copyright (c) 2016-present 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
|
|
}
|
|
}
|