@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
11 lines (10 loc) • 370 B
TypeScript
import { Model } from 'sequelize-typescript';
import { ChargingStation } from '../Location';
import { ChargingStationSequenceType } from '@citrineos/base';
export declare class ChargingStationSequence extends Model {
static readonly MODEL_NAME: string;
stationId: string;
type: ChargingStationSequenceType;
value: number;
station: ChargingStation;
}