@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
24 lines (23 loc) • 686 B
TypeScript
import { OCPP2_0_1 } from '@citrineos/base';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class VariableMonitoring extends BaseModelWithTenant implements OCPP2_0_1.VariableMonitoringType {
static readonly MODEL_NAME: string;
/**
* Fields
*/
databaseId: number;
stationId: string;
id: number;
transaction: boolean;
value: number;
type: OCPP2_0_1.MonitorEnumType;
severity: number;
/**
* Relations
*/
variable: OCPP2_0_1.VariableType;
variableId?: number | null;
component: OCPP2_0_1.ComponentType;
componentId?: number | null;
customData?: OCPP2_0_1.CustomDataType | null;
}