+import { EmptyObject } from '../../EmptyObject';
+
export enum MeterValueUnit {
WATT_HOUR = 'Wh',
KILO_WATT_HOUR = 'kWh',
meterValue: OCPP16MeterValue[];
}
-// eslint-disable-next-line @typescript-eslint/no-empty-interface
-export interface MeterValuesResponse {}
+export type MeterValuesResponse = EmptyObject;
import { ChargingProfilePurposeType, OCPP16ChargingProfile } from './ChargingProfile';
+import { EmptyObject } from '../../EmptyObject';
import { OCPP16ChargePointErrorCode } from './ChargePointErrorCode';
import { OCPP16ChargePointStatus } from './ChargePointStatus';
import { OCPP16DiagnosticsStatus } from './DiagnosticsStatus';
TRIGGER_MESSAGE = 'TriggerMessage'
}
-// eslint-disable-next-line @typescript-eslint/no-empty-interface
-export interface HeartbeatRequest { }
+export type HeartbeatRequest = EmptyObject;
export interface OCPP16BootNotificationRequest {
chargeBoxSerialNumber?: string;
+import { EmptyObject } from '../../EmptyObject';
import { OCPPConfigurationKey } from '../Configuration';
export interface HeartbeatResponse {
interval: number;
}
-// eslint-disable-next-line @typescript-eslint/no-empty-interface
-export interface StatusNotificationResponse {}
+export type StatusNotificationResponse = EmptyObject;
export interface GetConfigurationResponse {
configurationKey: OCPPConfigurationKey[];
fileName?: string;
}
-// eslint-disable-next-line @typescript-eslint/no-empty-interface
-export interface DiagnosticsStatusNotificationResponse {}
+export type DiagnosticsStatusNotificationResponse = EmptyObject;
export enum OCPP16TriggerMessageStatus {
ACCEPTED = 'Accepted',