@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
25 lines (24 loc) • 770 B
TypeScript
import { OCPP2_0_1 } from '@citrineos/base';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class MessageInfo extends BaseModelWithTenant implements OCPP2_0_1.MessageInfoType {
static readonly MODEL_NAME: string;
/**
* Fields
*/
databaseId: number;
stationId: string;
id: number;
priority: OCPP2_0_1.MessagePriorityEnumType;
state?: OCPP2_0_1.MessageStateEnumType | null;
startDateTime?: string | null;
endDateTime?: string | null;
transactionId?: string | null;
message: OCPP2_0_1.MessageContentType;
active: boolean;
/**
* Relations
*/
display: OCPP2_0_1.ComponentType;
displayComponentId?: number | null;
customData?: OCPP2_0_1.CustomDataType | null;
}