UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

11 lines (10 loc) 400 B
import { ChargingStation } from '../Location'; import { ChargingStationSequenceType } from '@citrineos/base'; import { BaseModelWithTenant } from '../BaseModelWithTenant'; export declare class ChargingStationSequence extends BaseModelWithTenant { static readonly MODEL_NAME: string; stationId: string; type: ChargingStationSequenceType; value: number; station: ChargingStation; }