UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

21 lines (20 loc) 645 B
import { OCPP2_0_1 } from '@citrineos/base'; import { BaseModelWithTenant } from '../BaseModelWithTenant'; export declare class VariableCharacteristics extends BaseModelWithTenant implements OCPP2_0_1.VariableCharacteristicsType { static readonly MODEL_NAME: string; /** * Fields */ unit?: string | null; dataType: OCPP2_0_1.DataEnumType; minLimit?: number | null; maxLimit?: number | null; valuesList?: string | null; supportsMonitoring: boolean; /** * Relations */ variable: OCPP2_0_1.VariableType; variableId?: number | null; customData?: OCPP2_0_1.CustomDataType | null; }