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
Modifier and Type Method Description abstract WalletService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. abstract ExternalService.WithRawResponseexternal()Walletsrepresent the blockchain wallet that holds the assets of anAccount.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.HttpResponseFor<Wallet>connectInternal(String accountId, WalletConnectInternalParams params, RequestOptions requestOptions)HttpResponseFor<Wallet>connectInternal(WalletConnectInternalParams params)abstract HttpResponseFor<Wallet>connectInternal(WalletConnectInternalParams params, RequestOptions requestOptions)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.HttpResponseFor<Wallet>get(String accountId, WalletGetParams params, RequestOptions requestOptions)HttpResponseFor<Wallet>get(String accountId, WalletGetParams params)abstract HttpResponseFor<Wallet>get(WalletGetParams params, RequestOptions requestOptions)HttpResponseFor<Wallet>get(WalletGetParams params)HttpResponseFor<Wallet>get(String accountId, RequestOptions requestOptions)-
-
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()
Walletsrepresent the blockchain wallet that holds the assets of anAccount.An
Accountmay be connected to a singleWallet.Individual
Entitiescan connect their self-custodiedWalletsby proving ownership of theWalletaddress. For Dinari Partners, a Dinari-managedWalletcan be created for the PartnerEntityin the Dinari Partners Portal. This may be used in omnibus accounting for self-managing customers' assets.
-
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)
-
-
-
-