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.lametrictime.internal.api.cloud.dto;
18 * @author Gregory Moyer - Initial contribution
24 private IconType type;
25 private String category;
29 public Integer getId() {
33 public void setId(Integer id) {
37 public Icon withId(Integer id) {
42 public String getTitle() {
46 public void setTitle(String title) {
50 public Icon withTitle(String title) {
55 public String getCode() {
59 public void setCode(String code) {
63 public Icon withCode(String code) {
68 public IconType getType() {
72 public void setType(IconType type) {
76 public Icon withType(IconType type) {
81 public String getCategory() {
85 public void setCategory(String category) {
86 this.category = category;
89 public Icon withCategory(String category) {
90 this.category = category;
94 public String getUrl() {
98 public void setUrl(String url) {
102 public Icon withUrl(String url) {
107 public Thumb getThumb() {
111 public void setThumb(Thumb thumb) {
115 public Icon withThumb(Thumb thumb) {