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.neato.internal.classes;
15 import com.google.gson.annotations.SerializedName;
18 * The {@link BeehiveAuthenticcation} is the internal class for handling authentication.
20 * @author Patrik Wimnell - Initial contribution
22 public class BeehiveAuthentication {
24 @SerializedName("access_token")
25 private String accessToken;
26 @SerializedName("current_time")
27 private String currentTime;
29 public String getAccessToken() {
33 public void setAccessToken(String accessToken) {
34 this.accessToken = accessToken;
37 public String getCurrentTime() {
41 public void setCurrentTime(String currentTime) {
42 this.currentTime = currentTime;