@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
17 lines (16 loc) • 557 B
TypeScript
import { ChargingStation } from './ChargingStation';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class StatusNotification extends BaseModelWithTenant {
static readonly MODEL_NAME: string;
stationId: string;
chargingStation: ChargingStation;
timestamp?: string | null;
connectorStatus: string;
evseId?: number | null;
connectorId: number;
errorCode?: string | null;
info?: string | null;
vendorId?: string | null;
vendorErrorCode?: string | null;
customData?: object | null;
}