Interface V1Service.WithRawResponse
-
- All Implemented Interfaces:
public interface V1Service.WithRawResponseA view of V1Service that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract V1Service.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
@MustBeClosed() HttpResponseFor<V1RetrieveResponse> retrieve(String id)
Returns a raw HTTP response for
get /ocr/v1/{id}, but is otherwise the same as V1Service.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<V1RetrieveResponse> retrieve(String id, V1RetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<V1RetrieveResponse> retrieve(String id, V1RetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<V1RetrieveResponse> retrieve(V1RetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<V1RetrieveResponse> retrieve(V1RetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<V1RetrieveResponse> retrieve(String id, RequestOptions requestOptions)
-
download
@MustBeClosed() HttpResponse download(V1DownloadParams.Type type, V1DownloadParams params)
Returns a raw HTTP response for
get /ocr/v1/{id}/download/{type}, but is otherwise the same as V1Service.download.
-
download
@MustBeClosed() HttpResponse download(V1DownloadParams.Type type, V1DownloadParams params, RequestOptions requestOptions)
-
download
@MustBeClosed() HttpResponse download(V1DownloadParams params)
-
download
@MustBeClosed() abstract HttpResponse download(V1DownloadParams params, RequestOptions requestOptions)
-
process
@MustBeClosed() HttpResponseFor<V1ProcessResponse> process(V1ProcessParams params)
Returns a raw HTTP response for
post /ocr/v1/process, but is otherwise the same as V1Service.process.
-
process
@MustBeClosed() abstract HttpResponseFor<V1ProcessResponse> process(V1ProcessParams params, RequestOptions requestOptions)
-
-
-
-