Interface ExternalServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface ExternalServiceAsync.WithRawResponseA view of ExternalServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract ExternalServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
connect
CompletableFuture<HttpResponseFor<Wallet>> connect(String accountId, ExternalConnectParams params)
Returns a raw HTTP response for
post /api/v2/accounts/{account_id}/wallet/external, but is otherwise the same as ExternalServiceAsync.connect.
-
connect
CompletableFuture<HttpResponseFor<Wallet>> connect(String accountId, ExternalConnectParams params, RequestOptions requestOptions)
-
connect
CompletableFuture<HttpResponseFor<Wallet>> connect(ExternalConnectParams params)
-
connect
abstract CompletableFuture<HttpResponseFor<Wallet>> connect(ExternalConnectParams params, RequestOptions requestOptions)
-
getNonce
CompletableFuture<HttpResponseFor<ExternalGetNonceResponse>> getNonce(String accountId, ExternalGetNonceParams params)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/wallet/external/nonce, but is otherwise the same as ExternalServiceAsync.getNonce.
-
getNonce
CompletableFuture<HttpResponseFor<ExternalGetNonceResponse>> getNonce(String accountId, ExternalGetNonceParams params, RequestOptions requestOptions)
-
getNonce
CompletableFuture<HttpResponseFor<ExternalGetNonceResponse>> getNonce(ExternalGetNonceParams params)
-
getNonce
abstract CompletableFuture<HttpResponseFor<ExternalGetNonceResponse>> getNonce(ExternalGetNonceParams params, RequestOptions requestOptions)
-
-
-
-