UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

18 lines (17 loc) 692 B
import { OCPP2_0_1 } from '@citrineos/base'; import type { TenantDto } from '@citrineos/base'; import { Model } from 'sequelize-typescript'; export declare class SendLocalList extends Model implements OCPP2_0_1.SendLocalListRequest { static readonly MODEL_NAME: string; stationId: string; correlationId: string; versionNumber: number; updateType: OCPP2_0_1.UpdateEnumType; localAuthorizationList?: any; customData?: OCPP2_0_1.CustomDataType | null | undefined; toSendLocalListRequest(): OCPP2_0_1.SendLocalListRequest; tenantId: number; tenant?: TenantDto; static setDefaultTenant(instance: SendLocalList): void; constructor(...args: any[]); }