2020-06-03 02:35:49 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
type Status struct {
|
2020-06-11 08:52:55 +02:00
|
|
|
Online bool `json:"online"`
|
|
|
|
ViewerCount int `json:"viewerCount"`
|
|
|
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
|
|
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
2020-06-03 02:35:49 +02:00
|
|
|
}
|