Skip to content

Commit

Permalink
converted IEXSharp.Model.CoreData.StockPrices.Response.updated from l…
Browse files Browse the repository at this point in the history
…ong? to decimal?

- fixes #116
  • Loading branch information
vslee committed Mar 17, 2022
1 parent 10eb45d commit 47dab79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -19,7 +19,7 @@ public class HistoricalPriceResponse : ITimestampedDateMinute
public string id { get; set; }
public string key { get; set; }
public string subkey { get; set; }
public long? updated { get; set; }
public decimal? updated { get; set; }
public decimal? changeOverTime { get; set; }
public decimal? marketChangeOverTime { get; set; }
public decimal? uOpen { get; set; }
Expand Down
1 change: 1 addition & 0 deletions IEXSharpTest/Cloud/CoreData/StockPricesTest.cs
Expand Up @@ -48,6 +48,7 @@ public async Task DelayedQuoteAsyncTest(string symbol)
[TestCase("AAPL", ChartRange.Ytd)]
[TestCase("AAPL", ChartRange.OneMonth)]
[TestCase("WWR", ChartRange.TwoYears)]
[TestCase("AMD", ChartRange.ThreeMonths)]
public async Task HistoricalPriceAsync(string symbol,
ChartRange range = ChartRange.OneMonth, QueryStringBuilder qsb = null)
{
Expand Down

0 comments on commit 47dab79

Please sign in to comment.