APIRequest represents the API request details
| 40 | |
| 41 | // APIRequest represents the API request details |
| 42 | type APIRequest struct { |
| 43 | URL string `json:"url"` |
| 44 | Method string `json:"method"` |
| 45 | Headers map[string]string `json:"headers,omitempty"` |
| 46 | Body interface{} `json:"body,omitempty"` |
| 47 | } |
| 48 | |
| 49 | // APIResponse represents the API response details |
| 50 | type APIResponse struct { |
nothing calls this directly
no outgoing calls
no test coverage detected