mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
18 lines
454 B
Go
18 lines
454 B
Go
package rollbar
|
|
|
|
type ActiveItems struct {
|
|
Results Result `json:"result"`
|
|
}
|
|
type Item struct {
|
|
Environment string `json:"environment"`
|
|
Title string `json:"title"`
|
|
Platform string `json:"platform"`
|
|
Status string `json:"status"`
|
|
TotalOccurrences int `json:"total_occurrences"`
|
|
Level string `json:"level"`
|
|
ID int `json:"counter"`
|
|
}
|
|
type Result struct {
|
|
Items []Item `json:"items"`
|
|
}
|