UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

17 lines (16 loc) 584 B
import type { ChargingStationDto, ConnectorDto, EvseDto, TenantDto } from '@citrineos/base'; import { Model } from 'sequelize-typescript'; export declare class Evse extends Model implements EvseDto { static readonly MODEL_NAME: string; stationId: string; evseTypeId?: number; evseId: string; physicalReference?: string | null; removed?: boolean; chargingStation?: ChargingStationDto; connectors?: ConnectorDto[] | null; tenantId: number; tenant?: TenantDto; static setDefaultTenant(instance: Evse): void; constructor(...args: any[]); }