]> git.basschouten.com Git - openhab-addons.git/blob
ac09d09c0942611a9378313db75f579032cc04a7
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2024 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.openweathermap.internal.dto;
14
15 import org.openhab.binding.openweathermap.internal.dto.airpollution.List;
16 import org.openhab.binding.openweathermap.internal.dto.base.Coord;
17
18 /**
19  * The {@link OpenWeatherMapJsonAirPollutionData} is the Java class used to map the JSON response to an OpenWeatherMap
20  * request.
21  *
22  * @author Christoph Weitkamp - Initial contribution
23  */
24 public class OpenWeatherMapJsonAirPollutionData {
25     public Coord coord;
26     public java.util.List<List> list;
27 }