- Notifications
You must be signed in to change notification settings - Fork 8
Closed
Description
When not integer values in the response these two properties (P_Grid and P_Load) generate an error.
Defining them as decimal solves the issue. Proposed fix:
In PowerFlowRealtimeData.cs
` [JsonProperty("P_Grid")]
public decimal PGrid { get; set; }
/// <summary> /// This value is null if no meter is enabled ( + generator, - consumer ) /// </summary> [JsonProperty("P_Load")] public **decimal** PLoad { get; set; } `
Metadata
Metadata
Assignees
Labels
No labels