Package dev.case.api.services.async.ocr
Interface V1ServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface V1ServiceAsync.WithRawResponseA view of V1ServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract V1ServiceAsync.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
CompletableFuture<HttpResponseFor<V1RetrieveResponse>> retrieve(String id)
Returns a raw HTTP response for
get /ocr/v1/{id}, but is otherwise the same as V1ServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<V1RetrieveResponse>> retrieve(String id, V1RetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<V1RetrieveResponse>> retrieve(String id, V1RetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<V1RetrieveResponse>> retrieve(V1RetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<V1RetrieveResponse>> retrieve(V1RetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<V1RetrieveResponse>> retrieve(String id, RequestOptions requestOptions)
-
download
CompletableFuture<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 V1ServiceAsync.download.
-
download
CompletableFuture<HttpResponse> download(V1DownloadParams.Type type, V1DownloadParams params, RequestOptions requestOptions)
-
download
CompletableFuture<HttpResponse> download(V1DownloadParams params)
-
download
abstract CompletableFuture<HttpResponse> download(V1DownloadParams params, RequestOptions requestOptions)
-
process
CompletableFuture<HttpResponseFor<V1ProcessResponse>> process(V1ProcessParams params)
Returns a raw HTTP response for
post /ocr/v1/process, but is otherwise the same as V1ServiceAsync.process.
-
process
abstract CompletableFuture<HttpResponseFor<V1ProcessResponse>> process(V1ProcessParams params, RequestOptions requestOptions)
-
-
-
-