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.hue.internal.dto.clip2;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.jdt.annotation.Nullable;
17 import org.openhab.binding.hue.internal.dto.clip2.enums.Archetype;
19 import com.google.gson.annotations.SerializedName;
22 * DTO for CLIP 2 product metadata.
24 * @author Andrew Fiddian-Green - Initial contribution
27 public class MetaData {
28 private @Nullable String archetype;
29 private @Nullable String name;
30 private @Nullable @SerializedName("control_id") Integer controlId;
32 public Archetype getArchetype() {
33 return Archetype.of(archetype);
36 public @Nullable String getName() {
40 public int getControlId() {
41 Integer controlId = this.controlId;
42 return controlId != null ? controlId.intValue() : 0;