UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

25 lines (24 loc) 596 B
import { Model } from 'sequelize-typescript'; import { Evse } from './DeviceModel'; export declare class Reservation extends Model { static readonly MODEL_NAME: string; /** * Fields */ databaseId: number; id: number; stationId: string; expiryDateTime: string; connectorType?: string | null; reserveStatus?: string | null; isActive: boolean; terminatedByTransaction?: string | null; idToken: object; groupIdToken?: object | null; /** * Relations */ evseId?: number | null; evse?: Evse; customData?: any | null; }