Package app.knock.api.services.async
Interface BulkOperationServiceAsync
-
- All Implemented Interfaces:
public interface BulkOperationServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceBulkOperationServiceAsync.WithRawResponseA view of BulkOperationServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract BulkOperationServiceAsync.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. CompletableFuture<BulkOperation>get(String id)Retrieves a bulk operation (if it exists) and displays the current state of it. CompletableFuture<BulkOperation>get(String id, BulkOperationGetParams params, RequestOptions requestOptions)CompletableFuture<BulkOperation>get(String id, BulkOperationGetParams params)abstract CompletableFuture<BulkOperation>get(BulkOperationGetParams params, RequestOptions requestOptions)CompletableFuture<BulkOperation>get(BulkOperationGetParams params)CompletableFuture<BulkOperation>get(String id, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract BulkOperationServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
get
CompletableFuture<BulkOperation> get(String id)
Retrieves a bulk operation (if it exists) and displays the current state of it.
-
get
CompletableFuture<BulkOperation> get(String id, BulkOperationGetParams params, RequestOptions requestOptions)
-
get
CompletableFuture<BulkOperation> get(String id, BulkOperationGetParams params)
-
get
abstract CompletableFuture<BulkOperation> get(BulkOperationGetParams params, RequestOptions requestOptions)
-
get
CompletableFuture<BulkOperation> get(BulkOperationGetParams params)
-
get
CompletableFuture<BulkOperation> get(String id, RequestOptions requestOptions)
-
-
-
-