Interface ExternalService.WithRawResponse
-
- All Implemented Interfaces:
public interface ExternalService.WithRawResponseA view of ExternalService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract ExternalService.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
@MustBeClosed() 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 ExternalService.connect.
-
connect
@MustBeClosed() HttpResponseFor<Wallet> connect(String accountId, ExternalConnectParams params, RequestOptions requestOptions)
-
connect
@MustBeClosed() HttpResponseFor<Wallet> connect(ExternalConnectParams params)
-
connect
@MustBeClosed() abstract HttpResponseFor<Wallet> connect(ExternalConnectParams params, RequestOptions requestOptions)
-
getNonce
@MustBeClosed() 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 ExternalService.getNonce.
-
getNonce
@MustBeClosed() HttpResponseFor<ExternalGetNonceResponse> getNonce(String accountId, ExternalGetNonceParams params, RequestOptions requestOptions)
-
getNonce
@MustBeClosed() HttpResponseFor<ExternalGetNonceResponse> getNonce(ExternalGetNonceParams params)
-
getNonce
@MustBeClosed() abstract HttpResponseFor<ExternalGetNonceResponse> getNonce(ExternalGetNonceParams params, RequestOptions requestOptions)
-
-
-
-