using EVCB_OCPP.Packet20.DataTypes;
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 NotifyDisplayMessagesRequest
{
///
/// The id of the GetDisplayMessagesRequest that
///requested this message.
///
[Required]
public int RequestId { set; get; }
///
/// "to be continued" indicator. Indicates whether
/// another part of the report follows in an upcoming
///NotifyDisplayMessagesRequest message.Default value
///when omitted is false.
///
public bool? Tbc { set; get; }
///
/// The requested display message as configured
///in the Charging Station
///
public List MessageInfo { set; get; }
}
}