Skip to content

Commit

Permalink
new NuGet release: 2.6.0
Browse files Browse the repository at this point in the history
- cleaned up date/minute comments
  • Loading branch information
vslee committed Feb 1, 2021
1 parent 14e1281 commit 545d0da
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion IEXSharp/IEXSharp.csproj
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<VersionPrefix>2.5.0</VersionPrefix>
<VersionPrefix>2.6.0</VersionPrefix>
<Authors>Victor Lee</Authors>
<Company />
<Description>IEX Cloud API for C# and other .net languages. Supports SSE streaming</Description>
Expand Down
Expand Up @@ -6,9 +6,9 @@ namespace IEXSharp.Model.CoreData.StockPrices.Response
[DebuggerDisplay("date={date}, open={open}, close={close}, high={high}, low={low}, vol={volume}")]
public class HistoricalPriceResponse : ITimestampedDateMinute
{
/// <summary>
/// Use DateTimeExtensions.GetTimestampInUTC(), which takes into account both 'date' and 'minute' and timezone
/// </summary>
/// <summary> Use DateTimeExtensions.GetTimestampInUTC(), which takes into account both 'date' and 'minute' and timezone </summary>
public string date { get; set; }
/// <summary> Use DateTimeExtensions.GetTimestampInUTC(), which takes into account both 'date' and 'minute' and timezone </summary>
public string minute { get; set; }
public decimal? close { get; set; }
public decimal? high { get; set; }
Expand All @@ -19,7 +19,6 @@ public class HistoricalPriceResponse : ITimestampedDateMinute
public string id { get; set; }
public string key { get; set; }
public string subkey { get; set; }
public string date { get; set; }
public long? updated { get; set; }
public decimal? changeOverTime { get; set; }
public decimal? marketChangeOverTime { get; set; }
Expand Down
Expand Up @@ -4,10 +4,9 @@ namespace IEXSharp.Model.CoreData.StockPrices.Response
{
public class IntradayPriceResponse : ITimestampedDateMinute
{
/// <summary>
/// Use DateTimeExtensions.GetTimestampInUTC(), which takes into account both 'date' and 'minute' and timezone
/// </summary>
/// <summary> Use DateTimeExtensions.GetTimestampInUTC(), which takes into account both 'date' and 'minute' and timezone </summary>
public string date { get; set; }
/// <summary> Use DateTimeExtensions.GetTimestampInUTC(), which takes into account both 'date' and 'minute' and timezone </summary>
public string minute { get; set; }
public string label { get; set; } // can be null
public decimal? marketOpen { get; set; }
Expand Down

0 comments on commit 545d0da

Please sign in to comment.