@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
15 lines (14 loc) • 513 B
TypeScript
import { OCPP2_0_1 } from '@citrineos/base';
import { VariableMonitoring } from './VariableMonitoring';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class VariableMonitoringStatus extends BaseModelWithTenant {
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;
}