2023-04-20 22:40:57 +05:30
|
|
|
package service
|
|
|
|
|
|
|
|
|
|
type UpdateSeveritiesRequest struct {
|
2023-04-25 23:46:29 +05:30
|
|
|
Severities []Severity `json:"severities"`
|
2023-04-20 22:40:57 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Severity struct {
|
2023-04-25 23:46:29 +05:30
|
|
|
Id uint `json:"id"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Description string `json:"description,omitempty"`
|
|
|
|
|
Sla int `json:"sla,omitempty"`
|
|
|
|
|
WorkEmailIds []string `json:"workEmailIds,omitempty"`
|
|
|
|
|
}
|