@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
12 lines (11 loc) • 348 B
TypeScript
import { Model } from 'sequelize-typescript';
export declare class CompositeSchedule extends Model {
static readonly MODEL_NAME: string;
stationId: string;
evseId: number;
duration: number;
scheduleStart: string;
chargingRateUnit: string;
chargingSchedulePeriod: [object, ...object[]];
customData?: object | null;
}