Interface StockService.WithRawResponse
-
- All Implemented Interfaces:
public interface StockService.WithRawResponseA view of StockService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract StockService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
splits
abstract SplitService.WithRawResponse splits()
-
list
@MustBeClosed() HttpResponseFor<List<StockListResponse>> list()
Returns a raw HTTP response for
get /api/v2/market_data/stocks/, but is otherwise the same as StockService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<List<StockListResponse>> list(StockListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<List<StockListResponse>> list(StockListParams params)
-
list
@MustBeClosed() HttpResponseFor<List<StockListResponse>> list(RequestOptions requestOptions)
-
retrieveCurrentPrice
@MustBeClosed() HttpResponseFor<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(String stockId)
Returns a raw HTTP response for
get /api/v2/market_data/stocks/{stock_id}/current_price, but is otherwise the same as StockService.retrieveCurrentPrice.
-
retrieveCurrentPrice
@MustBeClosed() HttpResponseFor<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(String stockId, StockRetrieveCurrentPriceParams params, RequestOptions requestOptions)
-
retrieveCurrentPrice
@MustBeClosed() HttpResponseFor<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(String stockId, StockRetrieveCurrentPriceParams params)
-
retrieveCurrentPrice
@MustBeClosed() abstract HttpResponseFor<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(StockRetrieveCurrentPriceParams params, RequestOptions requestOptions)
-
retrieveCurrentPrice
@MustBeClosed() HttpResponseFor<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(StockRetrieveCurrentPriceParams params)
-
retrieveCurrentPrice
@MustBeClosed() HttpResponseFor<StockRetrieveCurrentPriceResponse> retrieveCurrentPrice(String stockId, RequestOptions requestOptions)
-
retrieveCurrentQuote
@MustBeClosed() HttpResponseFor<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(String stockId)
Returns a raw HTTP response for
get /api/v2/market_data/stocks/{stock_id}/current_quote, but is otherwise the same as StockService.retrieveCurrentQuote.
-
retrieveCurrentQuote
@MustBeClosed() HttpResponseFor<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(String stockId, StockRetrieveCurrentQuoteParams params, RequestOptions requestOptions)
-
retrieveCurrentQuote
@MustBeClosed() HttpResponseFor<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(String stockId, StockRetrieveCurrentQuoteParams params)
-
retrieveCurrentQuote
@MustBeClosed() abstract HttpResponseFor<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(StockRetrieveCurrentQuoteParams params, RequestOptions requestOptions)
-
retrieveCurrentQuote
@MustBeClosed() HttpResponseFor<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(StockRetrieveCurrentQuoteParams params)
-
retrieveCurrentQuote
@MustBeClosed() HttpResponseFor<StockRetrieveCurrentQuoteResponse> retrieveCurrentQuote(String stockId, RequestOptions requestOptions)
-
retrieveDividends
@MustBeClosed() HttpResponseFor<List<StockRetrieveDividendsResponse>> retrieveDividends(String stockId)
Returns a raw HTTP response for
get /api/v2/market_data/stocks/{stock_id}/dividends, but is otherwise the same as StockService.retrieveDividends.
-
retrieveDividends
@MustBeClosed() HttpResponseFor<List<StockRetrieveDividendsResponse>> retrieveDividends(String stockId, StockRetrieveDividendsParams params, RequestOptions requestOptions)
-
retrieveDividends
@MustBeClosed() HttpResponseFor<List<StockRetrieveDividendsResponse>> retrieveDividends(String stockId, StockRetrieveDividendsParams params)
-
retrieveDividends
@MustBeClosed() abstract HttpResponseFor<List<StockRetrieveDividendsResponse>> retrieveDividends(StockRetrieveDividendsParams params, RequestOptions requestOptions)
-
retrieveDividends
@MustBeClosed() HttpResponseFor<List<StockRetrieveDividendsResponse>> retrieveDividends(StockRetrieveDividendsParams params)
-
retrieveDividends
@MustBeClosed() HttpResponseFor<List<StockRetrieveDividendsResponse>> retrieveDividends(String stockId, RequestOptions requestOptions)
-
retrieveHistoricalPrices
@MustBeClosed() HttpResponseFor<List<StockRetrieveHistoricalPricesResponse>> retrieveHistoricalPrices(String stockId, StockRetrieveHistoricalPricesParams params)
Returns a raw HTTP response for
get /api/v2/market_data/stocks/{stock_id}/historical_prices/, but is otherwise the same as StockService.retrieveHistoricalPrices.
-
retrieveHistoricalPrices
@MustBeClosed() HttpResponseFor<List<StockRetrieveHistoricalPricesResponse>> retrieveHistoricalPrices(String stockId, StockRetrieveHistoricalPricesParams params, RequestOptions requestOptions)
-
retrieveHistoricalPrices
@MustBeClosed() HttpResponseFor<List<StockRetrieveHistoricalPricesResponse>> retrieveHistoricalPrices(StockRetrieveHistoricalPricesParams params)
-
retrieveHistoricalPrices
@MustBeClosed() abstract HttpResponseFor<List<StockRetrieveHistoricalPricesResponse>> retrieveHistoricalPrices(StockRetrieveHistoricalPricesParams params, RequestOptions requestOptions)
-
retrieveNews
@MustBeClosed() HttpResponseFor<List<StockRetrieveNewsResponse>> retrieveNews(String stockId)
Returns a raw HTTP response for
get /api/v2/market_data/stocks/{stock_id}/news, but is otherwise the same as StockService.retrieveNews.
-
retrieveNews
@MustBeClosed() HttpResponseFor<List<StockRetrieveNewsResponse>> retrieveNews(String stockId, StockRetrieveNewsParams params, RequestOptions requestOptions)
-
retrieveNews
@MustBeClosed() HttpResponseFor<List<StockRetrieveNewsResponse>> retrieveNews(String stockId, StockRetrieveNewsParams params)
-
retrieveNews
@MustBeClosed() abstract HttpResponseFor<List<StockRetrieveNewsResponse>> retrieveNews(StockRetrieveNewsParams params, RequestOptions requestOptions)
-
retrieveNews
@MustBeClosed() HttpResponseFor<List<StockRetrieveNewsResponse>> retrieveNews(StockRetrieveNewsParams params)
-
retrieveNews
@MustBeClosed() HttpResponseFor<List<StockRetrieveNewsResponse>> retrieveNews(String stockId, RequestOptions requestOptions)
-
-
-
-