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