Skip to content

Commit

Permalink
Updated volume, uVolume and fVolume types to decimal from long. (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
dharmendra94 authored Feb 23, 2021
1 parent 84a3186 commit f680b97
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class HistoricalPriceResponse : ITimestampedDateMinute
public decimal? low { get; set; }
public decimal? open { get; set; }
public string symbol { get; set; }
public long? volume { get; set; }
public decimal? volume { get; set; }
public string id { get; set; }
public string key { get; set; }
public string subkey { get; set; }
Expand All @@ -26,12 +26,12 @@ public class HistoricalPriceResponse : ITimestampedDateMinute
public decimal? uClose { get; set; }
public decimal? uHigh { get; set; }
public decimal? uLow { get; set; }
public long? uVolume { get; set; }
public decimal? uVolume { get; set; }
public decimal? fOpen { get; set; }
public decimal? fClose { get; set; }
public decimal? fHigh { get; set; }
public decimal? fLow { get; set; }
public long? fVolume { get; set; }
public decimal? fVolume { get; set; }
public string label { get; set; }
public decimal? change { get; set; }
public decimal? changePercent { get; set; }
Expand Down

0 comments on commit f680b97

Please sign in to comment.