useserde::{Deserialize, Serialize};/// Heartbeat.req PDU sent by the Charge Point to the Central System.
pubstructHeartbeatReq{}/// Heartbeat.conf PDU sent by the Central System to the Charge Point in response to a
/// [Hearbeat.req](crate::v16::messages::HeartbeatReq) PDU.
#[derive(Serialize, Deserialize)]#[serde(rename_all ="camelCase")]pubstructHeartbeatConf{/// This contains the current time of the Central System.
pubcurrent_time: String,
}