From 6f8c0393b6844e0dcfaa5de96996b3be9ab373b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Antonio=20Reyes?= Date: Mon, 5 Feb 2024 19:05:20 -0300 Subject: [PATCH] remove `omitempty` from EO rule disable attrib --- pagerduty/event_orchestration_path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pagerduty/event_orchestration_path.go b/pagerduty/event_orchestration_path.go index f2fcbd3..afc5a12 100644 --- a/pagerduty/event_orchestration_path.go +++ b/pagerduty/event_orchestration_path.go @@ -37,7 +37,7 @@ type EventOrchestrationPathRule struct { Label string `json:"label,omitempty"` Conditions []*EventOrchestrationPathRuleCondition `json:"conditions"` Actions *EventOrchestrationPathRuleActions `json:"actions,omitempty"` - Disabled bool `json:"disabled,omitempty"` + Disabled bool `json:"disabled"` } type EventOrchestrationPathRuleCondition struct {