UNPKG

@munit-solutions/ocpp

Version:
12 lines (11 loc) 426 B
import Call from '../Call'; import { ChargingProfile } from '../../type/ChargingProfile'; export declare type SetChargingProfilePayload = { connectorId: number; csChargingProfiles: ChargingProfile; }; export default class SetChargingProfile extends Call { uniqueId: string; payload?: SetChargingProfilePayload | undefined; constructor(uniqueId?: string, payload?: SetChargingProfilePayload | undefined); }