Add CS template tunable to enable persistent OCPP configuration
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationConfiguration.ts
... / ...
CommitLineData
1import { JsonType } from './JsonType';
2import { OCPPConfigurationKey } from './ocpp/Configuration';
3
4export interface ConfigurationKey extends OCPPConfigurationKey {
5 visible?: boolean;
6 reboot?: boolean;
7}
8
9export default interface ChargingStationConfiguration extends JsonType {
10 configurationKey: ConfigurationKey[];
11}