X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2F1.6%2FChargingProfile.ts;h=89cf8e4d8545308d0e841f9647dde94beac746ff;hb=f5a1ff8ce8f87a149791c2c98fe7c5e8a20b5392;hp=67e12f970056a011b1671d4085bb3eec6c7e5164;hpb=411894569d4a0333a4e38e911a178520a69448cd;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/1.6/ChargingProfile.ts b/src/types/ocpp/1.6/ChargingProfile.ts index 67e12f97..89cf8e4d 100644 --- a/src/types/ocpp/1.6/ChargingProfile.ts +++ b/src/types/ocpp/1.6/ChargingProfile.ts @@ -1,4 +1,4 @@ -import type { JsonObject } from '../../internal'; +import type { JsonObject } from '../../JsonType.js'; export interface OCPP16ChargingProfile extends JsonObject { chargingProfileId: number; @@ -13,8 +13,8 @@ export interface OCPP16ChargingProfile extends JsonObject { } export interface OCPP16ChargingSchedule extends JsonObject { - duration?: number; startSchedule?: Date; + duration?: number; chargingRateUnit: OCPP16ChargingRateUnitType; chargingSchedulePeriod: OCPP16ChargingSchedulePeriod[]; minChargeRate?: number; @@ -46,5 +46,4 @@ export enum OCPP16ChargingProfilePurposeType { export enum OCPP16RecurrencyKindType { DAILY = 'Daily', WEEKLY = 'Weekly', - MONTHLY = 'Monthly', }