UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

26 lines (25 loc) 872 B
import type { VariableCharacteristicsDto, VariableDto, TenantDto } from '@citrineos/base'; import { OCPP2_0_1 } from '@citrineos/base'; import { Model } from 'sequelize-typescript'; export declare class VariableCharacteristics extends Model implements OCPP2_0_1.VariableCharacteristicsType, VariableCharacteristicsDto { 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: VariableDto; variableId?: number | null; customData?: OCPP2_0_1.CustomDataType | null; tenantId: number; tenant?: TenantDto; static setDefaultTenant(instance: VariableCharacteristics): void; constructor(...args: any[]); }