From 750b7372660d80922d9e360e8cb2e415c3aa65e6 Mon Sep 17 00:00:00 2001 From: Jkorf Date: Mon, 25 Nov 2024 13:18:55 +0100 Subject: [PATCH] Added SpecialTreatmentLabel to restClient.V5Api.ExchangeData.GetSpotSymbolsAsync response model --- ByBit.Net/Objects/Models/V5/BybitSpotSymbol.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ByBit.Net/Objects/Models/V5/BybitSpotSymbol.cs b/ByBit.Net/Objects/Models/V5/BybitSpotSymbol.cs index 7c0afeeb..c1647d98 100644 --- a/ByBit.Net/Objects/Models/V5/BybitSpotSymbol.cs +++ b/ByBit.Net/Objects/Models/V5/BybitSpotSymbol.cs @@ -52,6 +52,11 @@ public record BybitSpotSymbol /// [JsonProperty("riskParameters")] public BybitPriceLimit? PricePercentageFilter { get; set; } + /// + /// Whether the symbol has the special treatment label + /// + [JsonProperty("stTag")] + public bool SpecialTreatmentLabel { get; set; } } ///