UNPKG

@munit-solutions/ocpp

Version:
11 lines (10 loc) 432 B
import CallResult from '../CallResult'; import ClearChargingProfileStatus from '../../enum/ClearChargingProfileStatus'; export declare type ClearChargingProfileResPayload = { status: ClearChargingProfileStatus; }; export default class ClearChargingProfileResult extends CallResult { uniqueId: string; payload: ClearChargingProfileResPayload; constructor(uniqueId: string, payload: ClearChargingProfileResPayload); }