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 CreateSession2DTO {
28 @SerializedName("CultureInfoCode")
30 private String cultureInfoCode;
31 @SerializedName("IsPasswordReset")
33 private Boolean isPasswordReset;
34 @SerializedName("IsProfessional")
36 private Boolean isProfessional;
37 @SerializedName("IsProfessionalPasswordReset")
39 private Boolean isProfessionalPasswordReset;
40 @SerializedName("BrowserSessionId")
42 private Integer browserSessionId;
44 public String getCultureInfoCode() {
45 return cultureInfoCode;
48 public void setCultureInfoCode(String cultureInfoCode) {
49 this.cultureInfoCode = cultureInfoCode;
52 public Boolean getIsPasswordReset() {
53 return isPasswordReset;
56 public void setIsPasswordReset(Boolean isPasswordReset) {
57 this.isPasswordReset = isPasswordReset;
60 public Boolean getIsProfessional() {
61 return isProfessional;
64 public void setIsProfessional(Boolean isProfessional) {
65 this.isProfessional = isProfessional;
68 public Boolean getIsProfessionalPasswordReset() {
69 return isProfessionalPasswordReset;
72 public void setIsProfessionalPasswordReset(Boolean isProfessionalPasswordReset) {
73 this.isProfessionalPasswordReset = isProfessionalPasswordReset;
76 public Integer getBrowserSessionId() {
77 return browserSessionId;
80 public void setBrowserSessionId(Integer browserSessionId) {
81 this.browserSessionId = browserSessionId;