@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
17 lines (16 loc) • 595 B
TypeScript
import type { CompositeScheduleDto, TenantDto } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class CompositeSchedule extends Model implements CompositeScheduleDto {
static readonly MODEL_NAME: string;
stationId: string;
evseId: number;
duration: number;
scheduleStart: string;
chargingRateUnit: string;
chargingSchedulePeriod: [object, ...object[]];
customData?: object | null;
tenantId: number;
tenant?: TenantDto;
static setDefaultTenant(instance: CompositeSchedule): void;
constructor(...args: any[]);
}