@munit-solutions/ocpp
Version:
17 lines (16 loc) • 468 B
TypeScript
import Call from '../Call';
export declare type GetConfigurationPayload = {
key?: string[];
configurationKey?: KeyValue[];
unknownKey?: string[];
};
export declare type KeyValue = {
key: string;
readonly: boolean;
value?: string;
};
export default class GetConfiguration extends Call {
uniqueId: string;
payload?: GetConfigurationPayload | undefined;
constructor(uniqueId?: string, payload?: GetConfigurationPayload | undefined);
}