remove omitempty for active field in json tag for IntegrationModule struct

This commit is contained in:
Ruslan Efanov 2022-12-06 17:35:32 +03:00
parent 37df181264
commit a29e2419ff

View File

@ -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"`