import { IdToken, RemoteStartStopStatus, ChargingProfile } from './';

export type req = {
  idTag: IdToken;
  connectorId?: number;
  chargingProfile?: ChargingProfile;
};

export type conf = {
  status: RemoteStartStopStatus;
};
