@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
14 lines (13 loc) • 627 B
TypeScript
import { OCPP2_0_1 } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
import { LocalListAuthorization } from './LocalListAuthorization';
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?: [LocalListAuthorization, ...LocalListAuthorization[]] | null;
customData?: OCPP2_0_1.CustomDataType | null | undefined;
toSendLocalListRequest(): OCPP2_0_1.SendLocalListRequest;
}