diff --git a/incident.go b/incident.go index da55e5f5..fcb461e3 100644 --- a/incident.go +++ b/incident.go @@ -2,6 +2,7 @@ package pagerduty import ( "fmt" + "github.com/google/go-querystring/query" ) @@ -39,6 +40,7 @@ type Incident struct { EscalationPolicy APIObject `json:"escalation_policy,omitempty"` Teams []APIObject `json:"teams,omitempty"` Urgency string `json:"urgency,omitempty"` + Status string `json:"status,omitempty"` } // ListIncidentsResponse is the response structure when calling the ListIncident API endpoint.