@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
15 lines (14 loc) • 592 B
TypeScript
import type { ChargingStationSequenceTypeEnumType, TenantDto } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
import { type ChargingStation as ChargingStationType } from '../Location/index.js';
export declare class ChargingStationSequence extends Model {
static readonly MODEL_NAME: string;
stationId: string;
type: ChargingStationSequenceTypeEnumType;
value: number;
station: ChargingStationType;
tenantId: number;
tenant?: TenantDto;
static setDefaultTenant(instance: ChargingStationSequence): void;
constructor(...args: any[]);
}