Remove omitempty from SuccessfulResponse type

This commit is contained in:
gridnev 2022-04-27 16:25:34 +03:00
parent cdbf1d6e33
commit 3b5f7826ba

View File

@ -2,7 +2,7 @@ package retailcrm
// SuccessfulResponse type. // SuccessfulResponse type.
type SuccessfulResponse struct { type SuccessfulResponse struct {
Success bool `json:"success,omitempty"` Success bool `json:"success"`
} }
// CreateResponse type. // CreateResponse type.