2 * Copyright (c) 2010-2024 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.melcloud.internal.api.json;
15 import com.google.gson.annotations.Expose;
18 * The {@link QuantizedCoordinates} is responsible of JSON data For MELCloud API
19 * QuantizedCoordinates data
20 * Generated with jsonschema2pojo
22 * @author Luca Calcaterra - Initial contribution
24 public class QuantizedCoordinates {
27 private Double latitude;
30 private Double longitude;
32 public Double getLatitude() {
36 public void setLatitude(Double latitude) {
37 this.latitude = latitude;
40 public Double getLongitude() {
44 public void setLongitude(Double longitude) {
45 this.longitude = longitude;