Package com.dinari.api.services.blocking
Interface V2Service.WithRawResponse
-
- All Implemented Interfaces:
public interface V2Service.WithRawResponseA view of V2Service that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract V2Service.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. abstract MarketDataService.WithRawResponsemarketData()abstract EntityService.WithRawResponseentities()abstract AccountService.WithRawResponseaccounts()HttpResponseFor<List<V2ListOrdersResponse>>listOrders()Returns a raw HTTP response for get /api/v2/orders/, but is otherwise the same as V2Service.listOrders.abstract HttpResponseFor<List<V2ListOrdersResponse>>listOrders(V2ListOrdersParams params, RequestOptions requestOptions)HttpResponseFor<List<V2ListOrdersResponse>>listOrders(V2ListOrdersParams params)HttpResponseFor<List<V2ListOrdersResponse>>listOrders(RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract V2Service.WithRawResponse 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 MarketDataService.WithRawResponse marketData()
-
entities
abstract EntityService.WithRawResponse entities()
-
accounts
abstract AccountService.WithRawResponse accounts()
-
listOrders
@MustBeClosed() HttpResponseFor<List<V2ListOrdersResponse>> listOrders()
Returns a raw HTTP response for
get /api/v2/orders/, but is otherwise the same as V2Service.listOrders.
-
listOrders
@MustBeClosed() abstract HttpResponseFor<List<V2ListOrdersResponse>> listOrders(V2ListOrdersParams params, RequestOptions requestOptions)
-
listOrders
@MustBeClosed() HttpResponseFor<List<V2ListOrdersResponse>> listOrders(V2ListOrdersParams params)
-
listOrders
@MustBeClosed() HttpResponseFor<List<V2ListOrdersResponse>> listOrders(RequestOptions requestOptions)
-
-
-
-