()
| 252 | } |
| 253 | |
| 254 | func (s *Server) MarshalJSON() ([]byte, error) { |
| 255 | return marshalJSON([]jsonFieldInfo{ |
| 256 | {"url", s.URL, omitNever}, |
| 257 | {"description", s.Description, omitEmpty}, |
| 258 | {"variables", s.Variables, omitEmpty}, |
| 259 | }, s.Extensions) |
| 260 | } |
| 261 | |
| 262 | // Example value of a request param or body or response header or body. |
| 263 | // |
nothing calls this directly
no test coverage detected