UNPKG

@munit-solutions/ocpp

Version:
13 lines (11 loc) 365 B
import Call from '../Call'; import ClientCommand from '../../enum/ClientCommand'; export type CancelReservationPayload = { reservationId: number; }; export default class CancelReservation extends Call { constructor(public uniqueId: string = '', public payload?: CancelReservationPayload) { super(); this.action = ClientCommand.CancelReservation; } }