2015-03-21 20:53:16 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
// DashboardSnapshot model
|
|
|
|
type DashboardSnapshot struct {
|
|
|
|
Id int64
|
|
|
|
Name string
|
|
|
|
Key string
|
|
|
|
|
|
|
|
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-25 16:04:38 +08:00
|
|
|
External bool
|
2015-03-21 20:53:16 +08:00
|
|
|
|
|
|
|
Key string `json:"-"`
|
|
|
|
|
|
|
|
Result *DashboardSnapshot
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetDashboardSnapshotQuery struct {
|
|
|
|
Key string
|
|
|
|
|
|
|
|
Result *DashboardSnapshot
|
|
|
|
}
|