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.weather;
16 * Generated Plain Old Java Objects class for {@link Sys} from JSON.
18 * @author Christoph Weitkamp - Initial contribution
23 private Double message;
24 private String country;
25 private Integer sunrise;
26 private Integer sunset;
28 public Integer getType() {
32 public void setType(Integer type) {
36 public Integer getId() {
40 public void setId(Integer id) {
44 public Double getMessage() {
48 public void setMessage(Double message) {
49 this.message = message;
52 public String getCountry() {
56 public void setCountry(String country) {
57 this.country = country;
60 public Integer getSunrise() {
64 public void setSunrise(Integer sunrise) {
65 this.sunrise = sunrise;
68 public Integer getSunset() {
72 public void setSunset(Integer sunset) {