@munit-solutions/ocpp
Version:
13 lines (12 loc) • 413 B
TypeScript
import Call from '../Call';
import UpdateType from '../../enum/UpdateType';
export declare type SendLocalListPayload = {
listVersion: number;
localAuthorizationList?: any;
updateType: UpdateType;
};
export default class SendLocalList extends Call {
uniqueId: string;
payload?: SendLocalListPayload | undefined;
constructor(uniqueId?: string, payload?: SendLocalListPayload | undefined);
}