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.ihc.internal.ws.datatypes;
16 * Class for WSUserGroup complex type.
18 * @author Pauli Anttila - Initial contribution
20 public class WSUserGroup {
22 protected String type;
24 public WSUserGroup() {
27 public WSUserGroup(String type) {
32 * Gets the value of the type property.
34 * @return possible object is {@link String }
37 public String getType() {
42 * Sets the value of the type property.
44 * @param value allowed object is {@link String }
47 public void setType(String value) {