]> git.basschouten.com Git - openhab-addons.git/blob
c3b1ca3075114e0fd9a58765f31586659cd50919
[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.melcloud.internal.api.json;
14
15 import com.google.gson.annotations.Expose;
16
17 /**
18  * The {@link QuantizedCoordinates} is responsible of JSON data For MELCloud API
19  * QuantizedCoordinates data
20  * Generated with jsonschema2pojo
21  *
22  * @author Luca Calcaterra - Initial contribution
23  */
24 public class QuantizedCoordinates {
25
26     @Expose
27     private Double latitude;
28
29     @Expose
30     private Double longitude;
31
32     public Double getLatitude() {
33         return latitude;
34     }
35
36     public void setLatitude(Double latitude) {
37         this.latitude = latitude;
38     }
39
40     public Double getLongitude() {
41         return longitude;
42     }
43
44     public void setLongitude(Double longitude) {
45         this.longitude = longitude;
46     }
47 }