|
|
|
@ -10,6 +10,10 @@ |
|
|
|
|
|
|
|
|
|
package dashboard |
|
|
|
|
|
|
|
|
|
import ( |
|
|
|
|
"time" |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
// Defines values for Style.
|
|
|
|
|
const ( |
|
|
|
|
StyleDark Style = "dark" |
|
|
|
@ -633,7 +637,7 @@ type RowPanelType string |
|
|
|
|
// TODO docs
|
|
|
|
|
type Snapshot struct { |
|
|
|
|
// TODO docs
|
|
|
|
|
Created string `json:"created"` |
|
|
|
|
Created time.Time `json:"created"` |
|
|
|
|
|
|
|
|
|
// TODO docs
|
|
|
|
|
Expires string `json:"expires"` |
|
|
|
@ -657,7 +661,7 @@ type Snapshot struct { |
|
|
|
|
OrgId int `json:"orgId"` |
|
|
|
|
|
|
|
|
|
// TODO docs
|
|
|
|
|
Updated string `json:"updated"` |
|
|
|
|
Updated time.Time `json:"updated"` |
|
|
|
|
|
|
|
|
|
// TODO docs
|
|
|
|
|
Url *string `json:"url,omitempty"` |
|
|
|
|