Skip to content

Commit

Permalink
fix: use long on volume properties (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
rinukkusu authored Jan 31, 2021
1 parent 1dd5d35 commit 14e1281
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions IEXSharp/Model/Shared/Response/Quote.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ public class Quote
public decimal? extendedChangePercent { get; set; }
public long? extendedPriceTime { get; set; }
public decimal? previousClose { get; set; }
public int? previousVolume { get; set; }
public long? previousVolume { get; set; }
public decimal? change { get; set; }
public decimal? changePercent { get; set; }
public decimal? volume { get; set; }
public decimal? iexMarketPercent { get; set; }
public int? iexVolume { get; set; }
public int? avgTotalVolume { get; set; }
public long? iexVolume { get; set; }
public long? avgTotalVolume { get; set; }
public decimal? iexBidPrice { get; set; }
public int? iexBidSize { get; set; }
public decimal? iexAskPrice { get; set; }
Expand All @@ -59,4 +59,4 @@ public class Quote
public bool isUSMarketOpen { get; set; }
public string sector { get; set; }
}
}
}

0 comments on commit 14e1281

Please sign in to comment.