]> git.basschouten.com Git - openhab-addons.git/blob
b8293ac7a9939669eaff1312e4dfa5e0298dc443
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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.wolfsmartset.internal.dto;
14
15 import javax.annotation.Generated;
16
17 import com.google.gson.annotations.Expose;
18 import com.google.gson.annotations.SerializedName;
19
20 /**
21  * generated with https://www.jsonschema2pojo.org/
22  * 
23  * @author Bo Biene - Initial contribution
24  */
25 @Generated("jsonschema2pojo")
26 public class CreateSession2DTO {
27
28     @SerializedName("CultureInfoCode")
29     @Expose
30     private String cultureInfoCode;
31     @SerializedName("IsPasswordReset")
32     @Expose
33     private Boolean isPasswordReset;
34     @SerializedName("IsProfessional")
35     @Expose
36     private Boolean isProfessional;
37     @SerializedName("IsProfessionalPasswordReset")
38     @Expose
39     private Boolean isProfessionalPasswordReset;
40     @SerializedName("BrowserSessionId")
41     @Expose
42     private Integer browserSessionId;
43
44     public String getCultureInfoCode() {
45         return cultureInfoCode;
46     }
47
48     public void setCultureInfoCode(String cultureInfoCode) {
49         this.cultureInfoCode = cultureInfoCode;
50     }
51
52     public Boolean getIsPasswordReset() {
53         return isPasswordReset;
54     }
55
56     public void setIsPasswordReset(Boolean isPasswordReset) {
57         this.isPasswordReset = isPasswordReset;
58     }
59
60     public Boolean getIsProfessional() {
61         return isProfessional;
62     }
63
64     public void setIsProfessional(Boolean isProfessional) {
65         this.isProfessional = isProfessional;
66     }
67
68     public Boolean getIsProfessionalPasswordReset() {
69         return isProfessionalPasswordReset;
70     }
71
72     public void setIsProfessionalPasswordReset(Boolean isProfessionalPasswordReset) {
73         this.isProfessionalPasswordReset = isProfessionalPasswordReset;
74     }
75
76     public Integer getBrowserSessionId() {
77         return browserSessionId;
78     }
79
80     public void setBrowserSessionId(Integer browserSessionId) {
81         this.browserSessionId = browserSessionId;
82     }
83 }