export default interface StatusNotification {
    connectorId: number;
    status: 'Available' | 'Occupied' | 'Reserved' | 'Unavailable' | 'Faulted';
    errorCode: 'ConnectorLockFailure' | 'GroundFailure' | 'HighTemperature' | 'Mode3Error' | 'NoError' | 'OtherError' | 'OverCurrentFailure' | 'PowerMeterFailure' | 'PowerSwitchFailure' | 'ReaderFailure' | 'ResetFailure' | 'UnderVoltage' | 'WeakSignal';
    info?: string;
    timestamp?: string;
    vendorId?: string;
    vendorErrorCode?: string;
}
