UNPKG

ocpp-standard-schema

Version:

Contains OCPP JSON schemas for validation purposes

6 lines (5 loc) 433 B
export declare type FirmwareStatusEnumType = 'Downloaded' | 'DownloadFailed' | 'Downloading' | 'DownloadScheduled' | 'DownloadPaused' | 'Idle' | 'InstallationFailed' | 'Installing' | 'Installed' | 'InstallRebooting' | 'InstallScheduled' | 'InstallVerificationFailed' | 'InvalidSignature' | 'SignatureVerified'; export default interface SignedFirmwareStatusNotification { status: FirmwareStatusEnumType; requestId?: number; }