APIResponse represents the API response details
| 48 | |
| 49 | // APIResponse represents the API response details |
| 50 | type APIResponse struct { |
| 51 | StatusCode int `json:"status_code"` |
| 52 | Headers map[string]string `json:"headers,omitempty"` |
| 53 | Body interface{} `json:"body,omitempty"` |
| 54 | Duration time.Duration `json:"duration_ms"` |
| 55 | } |
| 56 | |
| 57 | // ComparisonReport contains comparison data between models/configurations |
| 58 | type ComparisonReport struct { |
nothing calls this directly
no outgoing calls
no test coverage detected