declare enum ChargingProfileStatus {
    Accepted = "Accepted",
    Rejected = "Rejected",
    NotSupported = "NotSupported"
}
export default ChargingProfileStatus;
