-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathJwtResponseModel.java
79 lines (62 loc) · 1.37 KB
/
JwtResponseModel.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package utilities.flex.models.transientToken;
import java.util.List;
import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
@Generated("jsonschema2pojo")
public class JwtResponseModel {
@SerializedName("flx")
@Expose
private Flx flx;
@SerializedName("ctx")
@Expose
private List<Ctx> ctx = null;
@SerializedName("iss")
@Expose
private String iss;
@SerializedName("exp")
@Expose
private Integer exp;
@SerializedName("iat")
@Expose
private Integer iat;
@SerializedName("jti")
@Expose
private String jti;
public Flx getFlx() {
return flx;
}
public void setFlx(Flx flx) {
this.flx = flx;
}
public List<Ctx> getCtx() {
return ctx;
}
public void setCtx(List<Ctx> ctx) {
this.ctx = ctx;
}
public String getIss() {
return iss;
}
public void setIss(String iss) {
this.iss = iss;
}
public Integer getExp() {
return exp;
}
public void setExp(Integer exp) {
this.exp = exp;
}
public Integer getIat() {
return iat;
}
public void setIat(Integer iat) {
this.iat = iat;
}
public String getJti() {
return jti;
}
public void setJti(String jti) {
this.jti = jti;
}
}