Raw returns the raw result.
()
| 1056 | |
| 1057 | // Raw returns the raw result. |
| 1058 | func (r Result) Raw() ([]byte, error) { |
| 1059 | return r.body, r.err |
| 1060 | } |
| 1061 | |
| 1062 | // Get returns the result as an object, which means it passes through the decoder. |
| 1063 | // If the returned object is of type Status and has .Status != StatusSuccess, the |
no outgoing calls