|
@@ -110,6 +110,17 @@ namespace EVCB_OCPP.WSServer.Service
|
|
|
|
|
|
}
|
|
|
|
|
|
+ if (jo.ContainsKey("ChargepointFee"))
|
|
|
+ {
|
|
|
+ result.ChargePointFee = new List<ChargePointFee>();
|
|
|
+
|
|
|
+ for (int i = 0; i < jo["ChargepointFee"].Count(); i++)
|
|
|
+ {
|
|
|
+ result.ChargePointFee.Add(jo["ChargepointFee"][i].ToObject<ChargePointFee>());
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
if (jo.ContainsKey("AccountBalance"))
|
|
|
{
|
|
|
decimal accountBalance = jo["AccountBalance"].Value<decimal>();
|