The Score class does NOT have the [JsonConverter(typeof(ScoreJsonConverter))] attribute.
The converter is defined but not applied to the class. The fact that it's being registered globally in AddModelConverters(JsonSerializerOptions) doesn't mean it will be used automatically - the class needs to have the attribute.
|
public partial class Score |
[JsonConverter(typeof(ScoreJsonConverter))]
public partial class Score
|
public partial class MinimumScore |
[JsonConverter(typeof(MinimumScoreJsonConverter))]
public partial class MinimumScore
|
public partial class MinimumResultScore |
[JsonConverter(typeof(MinimumResultScoreJsonConverter))]
public partial class MinimumResultScore
|
public partial class MinScore |
[JsonConverter(typeof(MinScoreJsonConverter))]
public partial class MinScore
The Score class does NOT have the [JsonConverter(typeof(ScoreJsonConverter))] attribute.
The converter is defined but not applied to the class. The fact that it's being registered globally in AddModelConverters(JsonSerializerOptions) doesn't mean it will be used automatically - the class needs to have the attribute.
nuclia-dotnet-sdk/src/Progress.Nuclia/Model/Generated/Score.cs
Line 30 in be99ecf
nuclia-dotnet-sdk/src/Progress.Nuclia/Model/Generated/MinimumScore.cs
Line 30 in be99ecf
nuclia-dotnet-sdk/src/Progress.Nuclia/Model/Generated/MinimumResultScore.cs
Line 30 in be99ecf
nuclia-dotnet-sdk/src/Progress.Nuclia/Model/Generated/MinScore.cs
Line 30 in be99ecf