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