@munit-solutions/ocpp
Version:
14 lines (13 loc) • 387 B
TypeScript
import Call from '../Call';
export declare type ReserveNowPayload = {
connectorId: number;
expiryDate: string;
idTag: string;
parentIdTag?: string;
reservationId: number;
};
export default class ReserveNow extends Call {
uniqueId: string;
payload?: ReserveNowPayload | undefined;
constructor(uniqueId?: string, payload?: ReserveNowPayload | undefined);
}