UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

15 lines (14 loc) 483 B
import { OCPP2_0_1 } from '@citrineos/base'; import { Model } from 'sequelize-typescript'; import { VariableMonitoring } from './VariableMonitoring'; export declare class VariableMonitoringStatus extends Model { static readonly MODEL_NAME: string; status: string; statusInfo?: OCPP2_0_1.StatusInfoType | null; /** * Relations */ variable: VariableMonitoring; variableMonitoringId?: number | null; customData?: OCPP2_0_1.CustomDataType | null; }