diff --git a/QuantConnect.OandaBrokerage/RestV20/Model/PriceBucket.cs b/QuantConnect.OandaBrokerage/RestV20/Model/PriceBucket.cs index f103a53..fba1b89 100644 --- a/QuantConnect.OandaBrokerage/RestV20/Model/PriceBucket.cs +++ b/QuantConnect.OandaBrokerage/RestV20/Model/PriceBucket.cs @@ -34,7 +34,7 @@ public partial class PriceBucket : IEquatable, IValidatableObject /// /// The Price offered by the PriceBucket. /// The amount of liquidity offered by the PriceBucket. - 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; @@ -51,7 +51,7 @@ public partial class PriceBucket : IEquatable, IValidatableObject /// /// The amount of liquidity offered by the PriceBucket [DataMember(Name="liquidity", EmitDefaultValue=false)] - public int? Liquidity { get; set; } + public decimal? Liquidity { get; set; } /// /// Returns the string presentation of the object ///