Executes the request, returning the requested single item @return requested item @throws IOException
()
| 27 | * @throws IOException |
| 28 | */ |
| 29 | public T execute() throws IOException { |
| 30 | ResultBody<T> result = this.executeRaw(); |
| 31 | return result.data; |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Executes the request, returning the full response body |