]> git.basschouten.com Git - openhab-addons.git/blob
ad2dc5fddbaaacd1e6cbaf915afd226b1dd56133
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
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
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.sensibo.internal.config;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.jdt.annotation.Nullable;
17
18 /**
19  * The {@link SensiboAccountConfiguration} class contains fields mapping thing configuration parameters.
20  *
21  * @author Arne Seime - Initial contribution
22  */
23 @NonNullByDefault
24 public class SensiboAccountConfiguration {
25     /**
26      * API key from https://home.sensibo.com/me/api
27      */
28     @Nullable
29     public String apiKey;
30     public int refreshInterval = 120;
31
32     @Override
33     public String toString() {
34         return "SensiboAccountConfiguration [apiKey=<not showing>, refreshInterval=" + refreshInterval + "]";
35     }
36 }