UNPKG

@munit-solutions/ocpp

Version:
17 lines (16 loc) 527 B
import Call from '../Call'; import Reason from '../../enum/Reason'; import { MeterValue } from '../../type/MeterValue'; export declare type StopTransactionPayload = { idTag?: string; meterStop: number; timestamp: string; transactionId: number; reason?: Reason; transactionData: MeterValue[]; }; export default class StopTransaction extends Call { uniqueId: string; payload?: StopTransactionPayload | undefined; constructor(uniqueId?: string, payload?: StopTransactionPayload | undefined); }