GetInstalledCertificateIdsRequest.cs 631 B

123456789101112131415161718192021
  1. using EVCB_OCPP.Packet20.DataTypes.EnumTypes;
  2. using Newtonsoft.Json;
  3. using Newtonsoft.Json.Converters;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace EVCB_OCPP.Packet20.Messages
  10. {
  11. public class GetInstalledCertificateIdsRequest
  12. {
  13. /// <summary>
  14. /// Indicates the type of certificates requested.
  15. ///When omitted, all certificate types are requested
  16. /// </summary>
  17. [JsonConverter(typeof(StringEnumConverter))]
  18. public List<GetCertificateIdUseEnumType> certificateType { set; get; }
  19. }
  20. }