diff --git a/Binance.Net/Binance.Net.xml b/Binance.Net/Binance.Net.xml
index 50fd1c40..518a1a3b 100644
--- a/Binance.Net/Binance.Net.xml
+++ b/Binance.Net/Binance.Net.xml
@@ -19051,6 +19051,11 @@
Whether the network is busy
+
+
+ Min withdraw quantity for internal withdrawals
+
+
User balance
diff --git a/Binance.Net/Objects/Models/Spot/BinanceUserAsset.cs b/Binance.Net/Objects/Models/Spot/BinanceUserAsset.cs
index 22bdfe6f..f761ed02 100644
--- a/Binance.Net/Objects/Models/Spot/BinanceUserAsset.cs
+++ b/Binance.Net/Objects/Models/Spot/BinanceUserAsset.cs
@@ -183,5 +183,10 @@ public record BinanceNetwork
///
[JsonPropertyName("busy")]
public bool Busy { get; set; }
+ ///
+ /// Min withdraw quantity for internal withdrawals
+ ///
+ [JsonPropertyName("withdrawInternalMin")]
+ public decimal WithdrawInternalMin { get; set; }
}
}