Skip to content

Commit

Permalink
more code fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ssnyder-intrinio committed Jul 22, 2024
1 parent f67cb9c commit 3d04a0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/intrinio/api/SecurityApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ public String getSecurityDataPointText(String identifier, String tag) throws Api
* Returns a text value for the given `tag` for the Security with the given `identifier`
* @param identifier A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) (required)
* @param tag An Intrinio data tag ID or code-name (required)
* @return ApiResponse<String>
* @return ApiResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse<String> getSecurityDataPointTextWithHttpInfo(String identifier, String tag) throws ApiException {
Expand Down Expand Up @@ -7388,7 +7388,7 @@ private com.squareup.okhttp.Call getSecurityRealtimePriceValidateBeforeCall(Stri
* @throws NoSuchMethodException If fail to get specified method off of the main class
*/
public RealtimeStockPrice getSecurityRealtimePrice(String identifier, List<String> source) throws ApiException, NoSuchMethodException {
Method targetMethod = SecurityApi.class.getMethod("getSecurityRealtimePriceWithHttpInfo", String.class, List&lt;String&gt;.class);
Method targetMethod = SecurityApi.class.getMethod("getSecurityRealtimePriceWithHttpInfo", String.class, List.class);

Object[] apiCallArguments = { identifier, source };
ApiResponse<RealtimeStockPrice> resp = apiClient.attemptApiCall(targetMethod, apiCallArguments);
Expand Down

0 comments on commit 3d04a0a

Please sign in to comment.