1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using EVCB_OCPP.Packet20.DataTypes;
- using EVCB_OCPP.Packet20.DataTypes.EnumTypes;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Converters;
- 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 GetLogRequest
- {
-
-
-
-
- [Required]
- [JsonConverter(typeof(StringEnumConverter))]
- public LogEnumType LogType { set; get; }
-
-
-
- [Required]
- public int RequestId { set; get; }
-
-
-
-
-
-
- public int? Retries { set; get; }
-
-
-
-
-
-
- public int? RetryInterval { set; get; }
-
-
-
-
- [Required]
- public LogParametersType Log { set; get; }
- }
- }
|