ceph-csi/vendor/github.com/mailru/easyjson/tests/omitempty.go

13 lines
289 B
Go
Raw Normal View History

2018-01-09 18:57:14 +00:00
package tests
//easyjson:json
type OmitEmptyDefault struct {
Field string
Str string
Str1 string `json:"s,!omitempty"`
Str2 string `json:",!omitempty"`
}
var omitEmptyDefaultValue = OmitEmptyDefault{Field: "test"}
var omitEmptyDefaultString = `{"Field":"test","s":"","Str2":""}`