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)
-
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)
-
retrieveQuote
@MustBeClosed() HttpResponseFor<StockRetrieveQuoteResponse> retrieveQuote(String stockId)
Returns a raw HTTP response for
get /api/v2/market_data/stocks/{stock_id}/quote, but is otherwise the same as StockService.retrieveQuote.
-
retrieveQuote
@MustBeClosed() HttpResponseFor<StockRetrieveQuoteResponse> retrieveQuote(String stockId, StockRetrieveQuoteParams params, RequestOptions requestOptions)
-
retrieveQuote
@MustBeClosed() HttpResponseFor<StockRetrieveQuoteResponse> retrieveQuote(String stockId, StockRetrieveQuoteParams params)
-
retrieveQuote
@MustBeClosed() abstract HttpResponseFor<StockRetrieveQuoteResponse> retrieveQuote(StockRetrieveQuoteParams params, RequestOptions requestOptions)
-
retrieveQuote
@MustBeClosed() HttpResponseFor<StockRetrieveQuoteResponse> retrieveQuote(StockRetrieveQuoteParams params)
-
retrieveQuote
@MustBeClosed() HttpResponseFor<StockRetrieveQuoteResponse> retrieveQuote(String stockId, RequestOptions requestOptions)
-
-
-
-