UNPKG

@munit-solutions/ocpp

Version:
13 lines (12 loc) 413 B
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); }