Remove omitempty from SuccessfulResponse type

This commit is contained in:
Alex Lushpai 2022-04-27 17:11:47 +03:00 committed by GitHub
commit b39f9d3f69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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.