@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
12 lines (11 loc) • 415 B
TypeScript
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class MeterValue extends BaseModelWithTenant {
static readonly MODEL_NAME: string;
transactionEventId?: number | null;
transactionDatabaseId?: number | null;
stopTransactionDatabaseId?: number | null;
sampledValue: [object, ...object[]];
timestamp: string;
connectorId?: number;
customData?: any | null;
}