X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2F1.6%2FResponses.ts;h=e7814c4f178caec976040c3d6e9372c155cf1729;hb=411894569d4a0333a4e38e911a178520a69448cd;hp=1724ce18ba87382495ed2d730f125b94b35c0c66;hpb=728e01f09f2b43946aab50eb2ed9673bf2d2daa3;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/1.6/Responses.ts b/src/types/ocpp/1.6/Responses.ts index 1724ce18..e7814c4f 100644 --- a/src/types/ocpp/1.6/Responses.ts +++ b/src/types/ocpp/1.6/Responses.ts @@ -1,6 +1,8 @@ import type { EmptyObject, + GenericStatus, JsonObject, + OCPP16ChargingSchedule, OCPPConfigurationKey, RegistrationStatusEnumType, } from '../../internal'; @@ -49,6 +51,13 @@ export enum OCPP16ChargingProfileStatus { NOT_SUPPORTED = 'NotSupported', } +export interface OCPP16GetCompositeScheduleResponse extends JsonObject { + status: GenericStatus; + connectorId?: number; + scheduleStart?: Date; + chargingSchedule?: OCPP16ChargingSchedule; +} + export interface SetChargingProfileResponse extends JsonObject { status: OCPP16ChargingProfileStatus; }