()
| 116 | } |
| 117 | |
| 118 | func (c *Contact) MarshalJSON() ([]byte, error) { |
| 119 | return marshalJSON([]jsonFieldInfo{ |
| 120 | {"name", c.Name, omitEmpty}, |
| 121 | {"url", c.URL, omitEmpty}, |
| 122 | {"email", c.Email, omitEmpty}, |
| 123 | }, c.Extensions) |
| 124 | } |
| 125 | |
| 126 | // License name & link for using the API. |
| 127 | // |
nothing calls this directly
no test coverage detected