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;
16 * Pojo for icons metadata.
18 * @author Gregory Moyer - Initial contribution
20 public class IconsMetadata {
21 private Integer totalIconCount;
23 private Integer pageSize;
24 private Integer pageCount;
26 public Integer getTotalIconCount() {
27 return totalIconCount;
30 public void setTotalIconCount(Integer totalIconCount) {
31 this.totalIconCount = totalIconCount;
34 public IconsMetadata withTotalIconCount(Integer totalIconCount) {
35 this.totalIconCount = totalIconCount;
39 public Integer getPage() {
43 public void setPage(Integer page) {
47 public IconsMetadata withPage(Integer page) {
52 public Integer getPageSize() {
56 public void setPageSize(Integer pageSize) {
57 this.pageSize = pageSize;
60 public IconsMetadata withPageSize(Integer pageSize) {
61 this.pageSize = pageSize;
65 public Integer getPageCount() {
69 public void setPageCount(Integer pageCount) {
70 this.pageCount = pageCount;
73 public IconsMetadata withPageCount(Integer pageCount) {
74 this.pageCount = pageCount;