UNPKG

@munit-solutions/ocpp

Version:
12 lines (11 loc) 418 B
import Call from '../Call'; import { ChargingProfile } from "../../type/ChargingProfile"; export declare type RemoteStartTransactionPayload = { connectorId: number; idTag: number; chargingProfile?: ChargingProfile; }; export default class RemoteStartTransaction extends Call { payload?: RemoteStartTransactionPayload | undefined; constructor(payload?: RemoteStartTransactionPayload | undefined); }