|
|
@@ -30,23 +30,20 @@ type CurrentUser struct {
|
|
|
}
|
|
|
|
|
|
type DashboardMeta struct {
|
|
|
- IsStarred bool `json:"isStarred,omitempty"`
|
|
|
- IsHome bool `json:"isHome,omitempty"`
|
|
|
- IsSnapshot bool `json:"isSnapshot,omitempty"`
|
|
|
- Type string `json:"type,omitempty"`
|
|
|
- CanSave bool `json:"canSave"`
|
|
|
- CanEdit bool `json:"canEdit"`
|
|
|
- CanStar bool `json:"canStar"`
|
|
|
- Slug string `json:"slug"`
|
|
|
- Expires time.Time `json:"expires"`
|
|
|
- Created time.Time `json:"created"`
|
|
|
- Updated time.Time `json:"updated"`
|
|
|
- UpdatedBy string `json:"updatedBy"`
|
|
|
- CreatedBy string `json:"createdBy"`
|
|
|
- TotalRows int `json:"totalRows"`
|
|
|
- TotalPanels int `json:"totalPanels"`
|
|
|
- TotalQueries int `json:"totalQueries"`
|
|
|
- Version int `json:"version"`
|
|
|
+ IsStarred bool `json:"isStarred,omitempty"`
|
|
|
+ IsHome bool `json:"isHome,omitempty"`
|
|
|
+ IsSnapshot bool `json:"isSnapshot,omitempty"`
|
|
|
+ Type string `json:"type,omitempty"`
|
|
|
+ CanSave bool `json:"canSave"`
|
|
|
+ CanEdit bool `json:"canEdit"`
|
|
|
+ CanStar bool `json:"canStar"`
|
|
|
+ Slug string `json:"slug"`
|
|
|
+ Expires time.Time `json:"expires"`
|
|
|
+ Created time.Time `json:"created"`
|
|
|
+ Updated time.Time `json:"updated"`
|
|
|
+ UpdatedBy string `json:"updatedBy"`
|
|
|
+ CreatedBy string `json:"createdBy"`
|
|
|
+ Version int `json:"version"`
|
|
|
}
|
|
|
|
|
|
type DashboardFullWithMeta struct {
|