@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
11 lines (10 loc) • 431 B
TypeScript
import { ChargingStation } from './ChargingStation';
import { StatusNotification } from './StatusNotification';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class LatestStatusNotification extends BaseModelWithTenant {
static readonly MODEL_NAME: string;
stationId: string;
chargingStation: ChargingStation;
statusNotificationId: string;
statusNotification: StatusNotification;
}