5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 18:22:30 +00:00
matterbridge/vendor/github.com/mattermost/mattermost-server/v5/model/users_stats.go
2020-08-10 00:29:54 +02:00

25 lines
445 B
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package model
import (
"encoding/json"
"io"
)
type UsersStats struct {
TotalUsersCount int64 `json:"total_users_count"`
}
func (o *UsersStats) ToJson() string {
b, _ := json.Marshal(o)
return string(b)
}
func UsersStatsFromJson(data io.Reader) *UsersStats {
var o *UsersStats
json.NewDecoder(data).Decode(&o)
return o
}