UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

20 lines (19 loc) 670 B
import { OCPP2_0_1 } from '@citrineos/base'; import { BaseModelWithTenant } from '../BaseModelWithTenant'; export declare class SalesTariff extends BaseModelWithTenant 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; }