Beginning of incident reporting
This commit is contained in:
18
cachet/component.go
Normal file
18
cachet/component.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package cachet
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type Component struct {
|
||||
Id int `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Description string `json:"description"`
|
||||
Status int `json:"status"`
|
||||
Link *string `json:"link"`
|
||||
Order *int `json:"order"`
|
||||
Group_id *int `json:"group_id"`
|
||||
Created_at *time.Time `json:"created_at"`
|
||||
Updated_at *time.Time `json:"updated_at"`
|
||||
Deleted_at *time.Time `json:"deleted_at"`
|
||||
}
|
||||
Reference in New Issue
Block a user