export interface UpdateChargingStationPasswordRequest {
    stationId: string;
    password?: string | null;
    setOnCharger: boolean;
}
