Interface TokenTransferService
-
- All Implemented Interfaces:
public interface TokenTransferServiceAccountsrepresent the financial accounts of anEntity.Orders, dividends, and other transactions are associated with anAccount.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceTokenTransferService.WithRawResponseA view of TokenTransferService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract TokenTransferService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract TokenTransferService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
TokenTransfer create(String accountId, TokenTransferCreateParams params)
Creates a
TokenTransferfrom thisAccount.A
TokenTransferrepresents a transfer of tokens through the Dinari platform from oneAccountto another. As such, onlyAccounts that are connected to Dinari-managedWallets can initiateTokenTransfers.
-
create
TokenTransfer create(String accountId, TokenTransferCreateParams params, RequestOptions requestOptions)
-
create
TokenTransfer create(TokenTransferCreateParams params)
-
create
abstract TokenTransfer create(TokenTransferCreateParams params, RequestOptions requestOptions)
-
retrieve
TokenTransfer retrieve(String transferId, TokenTransferRetrieveParams params)
Get a specific
TokenTransfermade from thisAccountby its ID.A
TokenTransferrepresents a transfer of tokens through the Dinari platform from oneAccountto another. As such, onlyAccounts that are connected to Dinari-managedWallets can initiateTokenTransfers.
-
retrieve
TokenTransfer retrieve(String transferId, TokenTransferRetrieveParams params, RequestOptions requestOptions)
-
retrieve
TokenTransfer retrieve(TokenTransferRetrieveParams params)
-
retrieve
abstract TokenTransfer retrieve(TokenTransferRetrieveParams params, RequestOptions requestOptions)
-
list
List<TokenTransfer> list(String accountId)
Get
TokenTransfers made from thisAccount.A
TokenTransferrepresents a transfer of tokens through the Dinari platform from oneAccountto another. As such, onlyAccounts that are connected to Dinari-managedWallets can initiateTokenTransfers.
-
list
List<TokenTransfer> list(String accountId, TokenTransferListParams params, RequestOptions requestOptions)
-
list
List<TokenTransfer> list(String accountId, TokenTransferListParams params)
-
list
abstract List<TokenTransfer> list(TokenTransferListParams params, RequestOptions requestOptions)
-
list
List<TokenTransfer> list(TokenTransferListParams params)
-
list
List<TokenTransfer> list(String accountId, RequestOptions requestOptions)
-
-
-
-