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.sensibo.internal.dto.poddetails;
15 import java.util.ArrayList;
16 import java.util.HashMap;
17 import java.util.List;
20 import com.google.gson.annotations.SerializedName;
23 * All classes in the ..binding.sensibo.dto are data transfer classes used by the GSON mapper. This class reflects a
24 * part of a request/response data structure.
26 * @author Arne Seime - Initial contribution.
28 public class ModeCapabilityDTO {
29 @SerializedName("swing")
30 public List<String> swingModes = new ArrayList<>();
31 public Map<String, TemperatureDTO> temperatures = new HashMap<>();
32 public List<String> fanLevels = new ArrayList<>();