Response represents an OpenAPI Response object as defined in https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md#responseObject
| 141 | // Response represents an OpenAPI Response object as defined in |
| 142 | // https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md#responseObject |
| 143 | Response struct { |
| 144 | Description *string `json:"description,omitempty" yaml:"description,omitempty"` |
| 145 | Headers map[string]*HeaderRef `json:"headers,omitempty" yaml:"headers,omitempty"` |
| 146 | Content map[string]*MediaType `json:"content,omitempty" yaml:"content,omitempty"` |
| 147 | Links map[string]*LinkRef `json:"links,omitempty" yaml:"links,omitempty"` |
| 148 | Extensions map[string]any `json:"-" yaml:"-"` |
| 149 | } |
| 150 | |
| 151 | // MediaType represents an OpenAPI Media Type object as defined in |
| 152 | // https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md#mediaTypeObject |
no outgoing calls
no test coverage detected