You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature request: a "jsonSkipZero" struct tag.
type Foo struct {
A int `json:"a"`
B string `json:"a"`
OptionalBar string `json:"optionalBar" jsonSkipZero:"true"`
OptionalBaz int `json:"optionalBaz" jsonSkipZero:"true"`
OptionalQux *Qux `json:"optionalQux" jsonSkipZero:"true"`
}
... so optionalStuff doesn't appear in the output object.