omitempty.go 289 B

123456789101112
  1. package tests
  2. //easyjson:json
  3. type OmitEmptyDefault struct {
  4. Field string
  5. Str string
  6. Str1 string `json:"s,!omitempty"`
  7. Str2 string `json:",!omitempty"`
  8. }
  9. var omitEmptyDefaultValue = OmitEmptyDefault{Field: "test"}
  10. var omitEmptyDefaultString = `{"Field":"test","s":"","Str2":""}`