Package com.lithic.api.services.async
Interface TransferServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface TransferServiceAsync.WithRawResponseA view of TransferServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract TransferServiceAsync.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. CompletableFuture<HttpResponseFor<Transfer>>create(TransferCreateParams params)Returns a raw HTTP response for post /v1/transfer, but is otherwise the same as TransferServiceAsync.create.abstract CompletableFuture<HttpResponseFor<Transfer>>create(TransferCreateParams params, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract TransferServiceAsync.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
@Deprecated(message = "deprecated") CompletableFuture<HttpResponseFor<Transfer>> create(TransferCreateParams params)
Returns a raw HTTP response for
post /v1/transfer, but is otherwise the same as TransferServiceAsync.create.
-
create
@Deprecated(message = "deprecated") abstract CompletableFuture<HttpResponseFor<Transfer>> create(TransferCreateParams params, RequestOptions requestOptions)
-
-
-
-