@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
16 lines (15 loc) • 488 B
TypeScript
import { OCPP2_0_1 } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
import { VariableAttribute } from './VariableAttribute';
export declare class VariableStatus extends Model {
static readonly MODEL_NAME: string;
value: string;
status: string;
statusInfo?: OCPP2_0_1.StatusInfoType | null;
/**
* Relations
*/
variable: VariableAttribute;
variableAttributeId?: number | null;
customData?: OCPP2_0_1.CustomDataType | null;
}