2020-06-02 17:35:49 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
type Status struct {
|
2020-06-10 23:52:55 -07:00
|
|
|
Online bool `json:"online"`
|
|
|
|
ViewerCount int `json:"viewerCount"`
|
|
|
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
|
|
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
2020-06-02 17:35:49 -07:00
|
|
|
}
|