12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using EVCB_OCPP.Packet20.DataTypes;
- using EVCB_OCPP.Packet20.Utilites;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.Packet20.Messages
- {
- public class NotifyReportRequest
- {
-
-
-
-
- [Required]
- public int RequestId { set; get; }
-
-
-
-
-
-
- public bool? Tbc { set; get; }
-
-
-
-
- [Required]
- public int SeqNo { set; get; }
-
-
-
-
- [Required]
- [JsonConverter(typeof(UTCDateTimeConverter))]
- public DateTime GeneratedAt { set; get; }
-
-
-
- public List<ReportDataType> ReportData { set; get; }
- }
- }
|