Skip to content

Commit

Permalink
No release notes for this build
Browse files Browse the repository at this point in the history
  • Loading branch information
ssnyder-intrinio committed Jun 29, 2024
1 parent 93c3e27 commit 90ac17c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/intrinio/api/StockExchangeApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ private com.squareup.okhttp.Call getStockExchangeRealtimePricesValidateBeforeCal
* @throws NoSuchMethodException If fail to get specified method off of the main class
*/
public ApiResponseStockExchangeRealtimeStockPrices getStockExchangeRealtimePrices(String identifier, String source, Boolean activeOnly, Integer pageSize, List<String> tickers, String nextPage) throws ApiException, NoSuchMethodException {
Method targetMethod = StockExchangeApi.class.getMethod("getStockExchangeRealtimePricesWithHttpInfo", String.class, String.class, Boolean.class, Integer.class, List&lt;String&gt;.class, String.class);
Method targetMethod = StockExchangeApi.class.getMethod("getStockExchangeRealtimePricesWithHttpInfo", String.class, String.class, Boolean.class, Integer.class, List.class, String.class);

Object[] apiCallArguments = { identifier, source, activeOnly, pageSize, tickers, nextPage };
ApiResponse<ApiResponseStockExchangeRealtimeStockPrices> resp = apiClient.attemptApiCall(targetMethod, apiCallArguments);
Expand Down

0 comments on commit 90ac17c

Please sign in to comment.