UNPKG

@munit-solutions/ocpp

Version:
14 lines (12 loc) 380 B
import Call from '../Call'; import ClientCommand from '../../enum/ClientCommand'; export type ChangeConfigurationPayload = { key: string; value: string; }; export default class ChangeConfiguration extends Call { constructor(public uniqueId: string = '', public payload?: ChangeConfigurationPayload) { super(); this.action = ClientCommand.ChangeConfiguration; } }