/** * This contains the reason for sending this message to the CSMS. * */ export declare type BootReasonEnumType = 'ApplicationReset' | 'FirmwareUpdate' | 'LocalReset' | 'PowerUp' | 'RemoteReset' | 'ScheduledReset' | 'Triggered' | 'Unknown' | 'Watchdog'; export default interface BootNotificationRequest { customData?: CustomDataType; chargingStation: ChargingStationType; reason: BootReasonEnumType; } /** * This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data. */ export interface CustomDataType { vendorId: string; [k: string]: unknown; } /** * Charge_ Point * urn:x-oca:ocpp:uid:2:233122 * The physical system where an Electrical Vehicle (EV) can be charged. * */ export interface ChargingStationType { customData?: CustomDataType; /** * Device. Serial_ Number. Serial_ Number * urn:x-oca:ocpp:uid:1:569324 * Vendor-specific device identifier. * */ serialNumber?: string; /** * Device. Model. CI20_ Text * urn:x-oca:ocpp:uid:1:569325 * Defines the model of the device. * */ model: string; modem?: ModemType; /** * Identifies the vendor (not necessarily in a unique manner). * */ vendorName: string; /** * This contains the firmware version of the Charging Station. * * */ firmwareVersion?: string; } /** * Wireless_ Communication_ Module * urn:x-oca:ocpp:uid:2:233306 * Defines parameters required for initiating and maintaining wireless communication with other devices. * */ export interface ModemType { customData?: CustomDataType; /** * Wireless_ Communication_ Module. ICCID. CI20_ Text * urn:x-oca:ocpp:uid:1:569327 * This contains the ICCID of the modem’s SIM card. * */ iccid?: string; /** * Wireless_ Communication_ Module. IMSI. CI20_ Text * urn:x-oca:ocpp:uid:1:569328 * This contains the IMSI of the modem’s SIM card. * */ imsi?: string; }