@munit-solutions/ocpp
Version:
13 lines (12 loc) • 378 B
TypeScript
import Call from '../Call';
export declare type UpdateFirmwarePayload = {
location: string;
retries?: number;
retrieveDate: Date;
retryInterval?: number;
};
export default class UpdateFirmware extends Call {
uniqueId: string;
payload?: UpdateFirmwarePayload | undefined;
constructor(uniqueId?: string, payload?: UpdateFirmwarePayload | undefined);
}