Package com.increase.api.services.async
Interface ExportServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface ExportServiceAsync.WithRawResponseA view of ExportServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract ExportServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<HttpResponseFor<Export>> create(ExportCreateParams params)
Returns a raw HTTP response for
post /exports, but is otherwise the same as ExportServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<Export>> create(ExportCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Export>> retrieve(String exportId)
Returns a raw HTTP response for
get /exports/{export_id}, but is otherwise the same as ExportServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<Export>> retrieve(String exportId, ExportRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Export>> retrieve(String exportId, ExportRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<Export>> retrieve(ExportRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Export>> retrieve(ExportRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<Export>> retrieve(String exportId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ExportListPageAsync>> list()
Returns a raw HTTP response for
get /exports, but is otherwise the same as ExportServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<ExportListPageAsync>> list(ExportListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ExportListPageAsync>> list(ExportListParams params)
-
list
CompletableFuture<HttpResponseFor<ExportListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-