UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

20 lines (19 loc) 640 B
import { OCPP2_0_1 } from '@citrineos/base'; import { Model } from 'sequelize-typescript'; export declare class SalesTariff extends Model implements OCPP2_0_1.SalesTariffType { static readonly MODEL_NAME: string; /** * Fields */ databaseId: number; id: number; numEPriceLevels?: number | null; salesTariffDescription?: string | null; salesTariffEntry: [OCPP2_0_1.SalesTariffEntryType, ...OCPP2_0_1.SalesTariffEntryType[]]; /** * Relations */ chargingScheduleDatabaseId: number; chargingSchedule: OCPP2_0_1.ChargingScheduleType; customData?: OCPP2_0_1.CustomDataType | null; }