File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ type Escalation struct {
42
42
Important * bool `json:"important"`
43
43
NotifyIfTimeFrom * string `json:"notify_if_time_from"`
44
44
NotifyIfTimeTo * string `json:"notify_if_time_to"`
45
+ Severity * string `json:"severity"`
45
46
}
46
47
47
48
// Empty struct is here in case we want to add request params to ListEscalations.
@@ -107,6 +108,7 @@ type CreateEscalationOptions struct {
107
108
Important * bool `json:"important,omitempty"`
108
109
NotifyIfTimeFrom string `json:"notify_if_time_from,omitempty"`
109
110
NotifyIfTimeTo string `json:"notify_if_time_to,omitempty"`
111
+ Severity string `json:"severity,omitempty"`
110
112
}
111
113
112
114
// CreateEscalation creates an escalation
@@ -145,6 +147,7 @@ type UpdateEscalationOptions struct {
145
147
Important * bool `json:"important,omitempty"`
146
148
NotifyIfTimeFrom string `json:"notify_if_time_from,omitempty"`
147
149
NotifyIfTimeTo string `json:"notify_if_time_to,omitempty"`
150
+ Severity string `json:"severity,omitempty"`
148
151
}
149
152
150
153
// UpdateEscalation updates an escalation with new templates and/or name. At least one field in template is required
You can’t perform that action at this time.
0 commit comments