From a29e2419ffbdb334def743a5c5ac77ae4af76f3d Mon Sep 17 00:00:00 2001 From: Ruslan Efanov Date: Tue, 6 Dec 2022 17:35:32 +0300 Subject: [PATCH] remove `omitempty` for `active` field in json tag for IntegrationModule struct --- types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.go b/types.go index edc264e..fd1c3af 100644 --- a/types.go +++ b/types.go @@ -975,7 +975,7 @@ type DeliveryShipment struct { type IntegrationModule struct { Code string `json:"code,omitempty"` IntegrationCode string `json:"integrationCode,omitempty"` - Active bool `json:"active,omitempty"` + Active bool `json:"active"` Freeze bool `json:"freeze,omitempty"` Native bool `json:"native,omitempty"` Name string `json:"name,omitempty"`