()
| 38 | } |
| 39 | |
| 40 | func (r FieldStruct) MarshalJSON() (data []byte, err error) { |
| 41 | type shadow FieldStruct |
| 42 | return param.MarshalObject(r, (*shadow)(&r)) |
| 43 | } |
| 44 | |
| 45 | type StructWithAdditionalProperties struct { |
| 46 | First string `json:"first"` |
nothing calls this directly
no test coverage detected