* INFRA-2901 : Add severity team function for incident use cases * INFRA-2901 : Add migration scripts as single and add nullability in bot and channel response --------- Co-authored-by: Shashank Shekhar <shashank.shekhar@navi.com>
11 lines
286 B
Go
11 lines
286 B
Go
package severity
|
|
|
|
type SeverityDTO struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Sla int `json:"sla"`
|
|
SlackUserIds []string `json:"slack_user_ids"`
|
|
Priority int `json:"priority"`
|
|
}
|