DecodeResponse decodes a Response from an http response. The original request is also passed as a parameter this is useful for implementation that needs the request to merge result or build the result correctly.
(context.Context, *http.Response, Request)
| 68 | // The original request is also passed as a parameter this is useful for implementation that needs the request |
| 69 | // to merge result or build the result correctly. |
| 70 | DecodeResponse(context.Context, *http.Response, Request) (Response, error) |
| 71 | // EncodeRequest encodes a Request into an http request. |
| 72 | EncodeRequest(context.Context, Request) (*http.Request, error) |
| 73 | // EncodeResponse encodes a Response into an http response. |
no outgoing calls