NotifyDisplayMessagesRequest.cs 1002 B

12345678910111213141516171819202122232425262728293031323334
  1. using EVCB_OCPP.Packet20.DataTypes;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace EVCB_OCPP.Packet20.Messages
  9. {
  10. public class NotifyDisplayMessagesRequest
  11. {
  12. /// <summary>
  13. /// The id of the GetDisplayMessagesRequest that
  14. ///requested this message.
  15. /// </summary>
  16. [Required]
  17. public int RequestId { set; get; }
  18. /// <summary>
  19. /// "to be continued" indicator. Indicates whether
  20. /// another part of the report follows in an upcoming
  21. ///NotifyDisplayMessagesRequest message.Default value
  22. ///when omitted is false.
  23. /// </summary>
  24. public bool? Tbc { set; get; }
  25. /// <summary>
  26. /// The requested display message as configured
  27. ///in the Charging Station
  28. /// </summary>
  29. public List<MessageInfoType> MessageInfo { set; get; }
  30. }
  31. }