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
21 private String original;
24 private String xlarge;
26 public String getOriginal() {
30 public void setOriginal(String original) {
31 this.original = original;
34 public Thumb withOriginal(String original) {
35 this.original = original;
39 public String getSmall() {
43 public void setSmall(String small) {
47 public Thumb withSmall(String small) {
52 public String getLarge() {
56 public void setLarge(String large) {
60 public Thumb withLarge(String large) {
65 public String getXlarge() {
69 public void setXlarge(String xlarge) {
73 public Thumb withXlarge(String xlarge) {