UNPKG

@munit-solutions/ocpp

Version:
16 lines (15 loc) 454 B
import CallResult from '../CallResult'; export declare type GetConfigurationResPayload = { configurationKey?: KeyValue[]; unknownKey?: string[]; }; export declare type KeyValue = { key: string; readonly: boolean; value?: string; }; export default class GetConfigurationResult extends CallResult { uniqueId: string; payload: GetConfigurationResPayload; constructor(uniqueId: string, payload: GetConfigurationResPayload); }