X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftypes%2Focpp%2F1.6%2FRequestResponses.ts;h=baf66c159a390d8ba6c095d643d82d63e618e42f;hb=8c476a1f1117b85fa29a435fc8733a482472139f;hp=e89efc34314677d51481258a111d998d09789d20;hpb=1aaa98dfc6fad0142f127e658071a5935fc66bd7;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/1.6/RequestResponses.ts b/src/types/ocpp/1.6/RequestResponses.ts index e89efc34..baf66c15 100644 --- a/src/types/ocpp/1.6/RequestResponses.ts +++ b/src/types/ocpp/1.6/RequestResponses.ts @@ -53,3 +53,13 @@ export interface GetConfigurationResponse { configurationKey: ConfigurationKey[]; unknownKey: string[]; } + +export enum ChargingProfileStatus { + ACCEPTED = 'Accepted', + REJECTED = 'Rejected', + NOT_SUPPORTED = 'NotSupported', +} + +export interface SetChargingProfileResponse { + status: ChargingProfileStatus; +}