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 25, 2024
1 parent db895d5 commit 8b5465e
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 26 deletions.
6 changes: 4 additions & 2 deletions docs/SecurityApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ Name | Type | Description | Notes

[//]: # (START_OVERVIEW)

> ApiResponseSecurityIntervalPrices GetSecurityIntervalPrices (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, string nextPage = null)
> ApiResponseSecurityIntervalPrices GetSecurityIntervalPrices (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, bool? splitAdjusted = null, string nextPage = null)
#### Interval Stock Prices for Security

Expand Down Expand Up @@ -1165,9 +1165,10 @@ namespace Example
string endTime = null;
string timezone = "UTC";
int? pageSize = 100;
bool? splitAdjusted = false;
string nextPage = null;

ApiResponseSecurityIntervalPrices result = securityApi.GetSecurityIntervalPrices(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, nextPage);
ApiResponseSecurityIntervalPrices result = securityApi.GetSecurityIntervalPrices(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, splitAdjusted, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
Expand All @@ -1192,6 +1193,7 @@ Name | Type | Description | Notes
**endTime** | string| Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) | [optional]  
**timezone** | string| Returns trading times in this timezone | [optional] [default to UTC]  
**pageSize** | int?| The number of results to return | [optional] [default to 100]  
**splitAdjusted** | bool?| Whether to return the values adjusted for splits or not. Default is false. | [optional] [default to false]  
**nextPage** | string| Gets the next page of data from a previous API call | [optional]  
<br/>

Expand Down
6 changes: 4 additions & 2 deletions docs/StockExchangeApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ Name | Type | Description | Notes

[//]: # (START_OVERVIEW)

> ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrices (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, string nextPage = null)
> ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrices (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, List<string> tickers = null, string nextPage = null)
#### Realtime Stock Prices by Exchange

Expand Down Expand Up @@ -445,9 +445,10 @@ namespace Example
string source = null;
bool? activeOnly = null;
int? pageSize = 100;
var tickers = new List<string>();
string nextPage = null;

ApiResponseStockExchangeRealtimeStockPrices result = stockExchangeApi.GetStockExchangeRealtimePrices(identifier, source, activeOnly, pageSize, nextPage);
ApiResponseStockExchangeRealtimeStockPrices result = stockExchangeApi.GetStockExchangeRealtimePrices(identifier, source, activeOnly, pageSize, tickers, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
Expand All @@ -467,6 +468,7 @@ Name | Type | Description | Notes
**source** | string| Return realtime prices from the specified data source. If no source is specified, all sources are used. | [optional] &nbsp;
**activeOnly** | bool?| Returns prices only from the most recent trading day. | [optional] &nbsp;
**pageSize** | int?| The number of results to return | [optional] [default to 100] &nbsp;
**tickers** | [**List&lt;string&gt;**](string.md)| The list of ticker symbols to filter to. | [optional] &nbsp;
**nextPage** | string| Gets the next page of data from a previous API call | [optional] &nbsp;
<br/>

Expand Down
3 changes: 2 additions & 1 deletion src/Intrinio.SDK.Test/Api/SecurityApiTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,9 @@ public void GetSecurityIntervalPricesTest()
//string endTime = null;
//string timezone = null;
//int? pageSize = null;
//bool? splitAdjusted = null;
//string nextPage = null;
//var response = instance.GetSecurityIntervalPrices(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, nextPage);
//var response = instance.GetSecurityIntervalPrices(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, splitAdjusted, nextPage);
//Assert.IsInstanceOf<ApiResponseSecurityIntervalPrices> (response, "response is ApiResponseSecurityIntervalPrices");
}

Expand Down
3 changes: 2 additions & 1 deletion src/Intrinio.SDK.Test/Api/StockExchangeApiTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,9 @@ public void GetStockExchangeRealtimePricesTest()
//string source = null;
//bool? activeOnly = null;
//int? pageSize = null;
//List<string> tickers = null;
//string nextPage = null;
//var response = instance.GetStockExchangeRealtimePrices(identifier, source, activeOnly, pageSize, nextPage);
//var response = instance.GetStockExchangeRealtimePrices(identifier, source, activeOnly, pageSize, tickers, nextPage);
//Assert.IsInstanceOf<ApiResponseStockExchangeRealtimeStockPrices> (response, "response is ApiResponseStockExchangeRealtimeStockPrices");
}

Expand Down
Loading

0 comments on commit 8b5465e

Please sign in to comment.