2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.openweathermap.internal.dto.base;
16 * Generated Plain Old Java Objects class for {@link City} from JSON.
18 * @author Christoph Weitkamp - Initial contribution
23 private String country;
24 private Integer population;
27 public Integer getId() {
31 public void setId(Integer id) {
35 public String getName() {
39 public void setName(String name) {
43 public Coord getCoord() {
47 public void setCoord(Coord coord) {
51 public String getCountry() {
55 public void setCountry(String country) {
56 this.country = country;
59 public Integer getPopulation() {
63 public void setPopulation(Integer population) {
64 this.population = population;