Package com.dinari.api.services.async
Interface V2ServiceAsync
-
- All Implemented Interfaces:
public interface V2ServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceV2ServiceAsync.WithRawResponseA view of V2ServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract V2ServiceAsync.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract V2ServiceAsyncwithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. abstract MarketDataServiceAsyncmarketData()abstract EntityServiceAsyncentities()abstract AccountServiceAsyncaccounts()CompletableFuture<List<V2ListOrdersResponse>>listOrders()Get a list of all Ordersunder theEntity.abstract CompletableFuture<List<V2ListOrdersResponse>>listOrders(V2ListOrdersParams params, RequestOptions requestOptions)CompletableFuture<List<V2ListOrdersResponse>>listOrders(V2ListOrdersParams params)CompletableFuture<List<V2ListOrdersResponse>>listOrders(RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract V2ServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract V2ServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
marketData
abstract MarketDataServiceAsync marketData()
-
entities
abstract EntityServiceAsync entities()
-
accounts
abstract AccountServiceAsync accounts()
-
listOrders
CompletableFuture<List<V2ListOrdersResponse>> listOrders()
Get a list of all
Ordersunder theEntity. OptionallyOrderscan be transaction hash or fulfillment transaction hash.
-
listOrders
abstract CompletableFuture<List<V2ListOrdersResponse>> listOrders(V2ListOrdersParams params, RequestOptions requestOptions)
-
listOrders
CompletableFuture<List<V2ListOrdersResponse>> listOrders(V2ListOrdersParams params)
-
listOrders
CompletableFuture<List<V2ListOrdersResponse>> listOrders(RequestOptions requestOptions)
-
-
-
-