2015-03-21 07:53:16 -05:00
|
|
|
package models
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
// DashboardSnapshot model
|
|
|
|
type DashboardSnapshot struct {
|
2015-03-26 06:00:52 -05:00
|
|
|
Id int64
|
|
|
|
Name string
|
|
|
|
Key string
|
|
|
|
OrgId int64
|
2015-03-21 07:53:16 -05:00
|
|
|
|
|
|
|
Expires time.Time
|
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
|
|
|
|
|
|
|
Dashboard map[string]interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------
|
|
|
|
// COMMANDS
|
|
|
|
|
|
|
|
type CreateDashboardSnapshotCommand struct {
|
|
|
|
Dashboard map[string]interface{} `json:"dashboard" binding:"Required"`
|
2015-03-26 06:00:52 -05:00
|
|
|
External bool `json:"external"`
|
|
|
|
Expires int64 `json:"expires"`
|
2015-03-21 07:53:16 -05:00
|
|
|
|
2015-03-26 06:00:52 -05:00
|
|
|
OrgId int64 `json:"-"`
|
|
|
|
Key string `json:"-"`
|
2015-03-21 07:53:16 -05:00
|
|
|
|
|
|
|
Result *DashboardSnapshot
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetDashboardSnapshotQuery struct {
|
|
|
|
Key string
|
|
|
|
|
|
|
|
Result *DashboardSnapshot
|
|
|
|
}
|