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 NotifyEVChargingNeedsRequest
{
///
/// Contains the maximum schedule tuples the car
///supports per SASchedule(both Pmax and Tariff)
///
public int? MaxScheduleTuples { set; get; }
///
/// Defines the EVSE and connector to which the
/// EV is connected.EvseId may not be 0.
///
[Required]
public int EvseId { set; get; }
///
/// The characteristics of the energy delivery
///required.
///
[Required]
public ChargingNeedsType ChargingNeeds { set; get; }
}
}