Add UI console and spare forecast naming
This commit is contained in:
@@ -3,14 +3,14 @@ package domain
|
||||
import "time"
|
||||
|
||||
type FailureEvent struct {
|
||||
ID int64
|
||||
Source string
|
||||
ExternalID string
|
||||
ComponentID int64
|
||||
AssetID *int64
|
||||
FailureType string
|
||||
FailureTime time.Time
|
||||
Details *string
|
||||
Confidence *float64
|
||||
CreatedAt time.Time
|
||||
ID int64 `json:"id"`
|
||||
Source string `json:"source"`
|
||||
ExternalID string `json:"external_id"`
|
||||
ComponentID int64 `json:"component_id"`
|
||||
AssetID *int64 `json:"asset_id,omitempty"`
|
||||
FailureType string `json:"failure_type"`
|
||||
FailureTime time.Time `json:"failure_time"`
|
||||
Details *string `json:"details,omitempty"`
|
||||
Confidence *float64 `json:"confidence,omitempty"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user