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.wolfsmartset.internal.dto;
15 import javax.annotation.Generated;
17 import com.google.gson.annotations.Expose;
18 import com.google.gson.annotations.SerializedName;
21 * generated with https://www.jsonschema2pojo.org/
23 * @author Bo Biene - Initial contribution
25 @Generated("jsonschema2pojo")
26 public class LoginResponseDTO {
28 @SerializedName("access_token")
30 private String accessToken;
31 @SerializedName("expires_in")
33 private Integer expiresIn;
34 @SerializedName("token_type")
36 private String tokenType;
37 @SerializedName("refresh_token")
39 private String refreshToken;
40 @SerializedName("scope")
44 public String getAccessToken() {
48 public void setAccessToken(String accessToken) {
49 this.accessToken = accessToken;
52 public Integer getExpiresIn() {
56 public void setExpiresIn(Integer expiresIn) {
57 this.expiresIn = expiresIn;
60 public String getTokenType() {
64 public void setTokenType(String tokenType) {
65 this.tokenType = tokenType;
68 public String getRefreshToken() {
72 public void setRefreshToken(String refreshToken) {
73 this.refreshToken = refreshToken;
76 public String getScope() {
80 public void setScope(String scope) {