@munit-solutions/ocpp
Version:
14 lines (13 loc) • 511 B
TypeScript
import Call from '../Call';
import ChargingProfilePurposeType from '../../enum/ChargingProfilePurposeType';
export declare type ClearChargingProfilePayload = {
id?: number;
connectorId?: number;
chargingProfilePurpose?: ChargingProfilePurposeType;
stackLevel?: number;
};
export default class ClearChargingProfile extends Call {
uniqueId: string;
payload?: ClearChargingProfilePayload | undefined;
constructor(uniqueId?: string, payload?: ClearChargingProfilePayload | undefined);
}