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.io.hueemulation.internal.dto.changerequest;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.jdt.annotation.Nullable;
19 * Multiple endpoints support PUT changes, for example:
21 * <li>Config: Allows to change the bridge name, dhcp, portalservices, linkbutton
22 * <li>Light: Allows to change the name
23 * <li>Group: Allows to change the name
24 * <li>Sensor: Allows to change the name
27 * @author David Graeff - Initial contribution
30 public class HueChangeRequest {
31 public @Nullable String devicename;
32 public @Nullable String name;
33 public @Nullable Boolean dhcp;
34 public @Nullable Boolean linkbutton;
35 public @Nullable Boolean portalservices;