From 3bc412a6fa6737eefd67356978a265ffd32e5fc9 Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Wed, 19 Jun 2019 14:27:48 -0400 Subject: [PATCH] Support Links in V2Event https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2#section-the-links-property --- event_v2.go | 1 + 1 file changed, 1 insertion(+) diff --git a/event_v2.go b/event_v2.go index 8198dea9..1051cf79 100644 --- a/event_v2.go +++ b/event_v2.go @@ -14,6 +14,7 @@ type V2Event struct { Action string `json:"event_action"` DedupKey string `json:"dedup_key,omitempty"` Images []interface{} `json:"images,omitempty"` + Links []interface{} `json:"links,omitempty"` Client string `json:"client,omitempty"` ClientURL string `json:"client_url,omitempty"` Payload *V2Payload `json:"payload,omitempty"`