Skip to content

Commit

Permalink
PriceBucket.Liquidity int -> decimal (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
benletchford authored Sep 28, 2023
1 parent 667c216 commit 2c22c61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QuantConnect.OandaBrokerage/RestV20/Model/PriceBucket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public partial class PriceBucket : IEquatable<PriceBucket>, IValidatableObject
/// </summary>
/// <param name="Price">The Price offered by the PriceBucket.</param>
/// <param name="Liquidity">The amount of liquidity offered by the PriceBucket.</param>
public PriceBucket(string Price = default(string), int? Liquidity = default(int?))
public PriceBucket(string Price = default(string), decimal? Liquidity = default(decimal?))
{
this.Price = Price;
this.Liquidity = Liquidity;
Expand All @@ -51,7 +51,7 @@ public partial class PriceBucket : IEquatable<PriceBucket>, IValidatableObject
/// </summary>
/// <value>The amount of liquidity offered by the PriceBucket</value>
[DataMember(Name="liquidity", EmitDefaultValue=false)]
public int? Liquidity { get; set; }
public decimal? Liquidity { get; set; }
/// <summary>
/// Returns the string presentation of the object
/// </summary>
Expand Down

0 comments on commit 2c22c61

Please sign in to comment.