UNPKG

@munit-solutions/ocpp

Version:
18 lines (17 loc) 550 B
import Call from '../Call'; export declare type BootNotificationPayload = { chargeBoxSerialNumber?: string; chargePointModel: string; chargePointSerialNumber?: string; chargePointVendor: string; firmwareVersion?: string; iccid?: string; imsi?: string; meterSerialNumber?: string; meterType?: string; }; export default class BootNotification extends Call { uniqueId: string; payload?: BootNotificationPayload | undefined; constructor(uniqueId?: string, payload?: BootNotificationPayload | undefined); }