-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResponse.java
More file actions
158 lines (117 loc) · 2.6 KB
/
Copy pathResponse.java
File metadata and controls
158 lines (117 loc) · 2.6 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
public class Response {
private String id;
private String first_name;
private String sex;
private String status;
private String last_name;
private String bdate;
private String online;
private String online_mobile;
private String online_app;
private Country country;
private City city;
private String hidden;
private Counters counters;
public Counters getCounters() {
return counters;
}
public void setCounters(Counters counters) {
this.counters = counters;
}
public String getHidden(){
return hidden;
}
public void setHidden(String hidden){
this.hidden = hidden;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getOnline_app() {
return online_app;
}
public void setOnline_app(String online_app) {
this.online_app = online_app;
}
public String getOnline_mobile() {
return online_mobile;
}
public void setOnline_mobile(String online_mobile) {
this.online_mobile = online_mobile;
}
public String getId ()
{
return id;
}
public void setId (String id)
{
this.id = id;
}
public String getFirst_name ()
{
return first_name;
}
public void setFirst_name (String first_name)
{
this.first_name = first_name;
}
public String getSex ()
{
return sex;
}
public void setSex (String sex)
{
this.sex = sex;
}
public String getLast_name ()
{
return last_name;
}
public void setLast_name (String last_name)
{
this.last_name = last_name;
}
public String getBdate ()
{
return bdate;
}
public void setBdate (String bdate)
{
this.bdate = bdate;
}
public String getOnline ()
{
return online;
}
public void setOnline (String online)
{
this.online = online;
}
public Country getCountry ()
{
return country;
}
public void setCountry (Country country)
{
this.country = country;
}
public City getCity ()
{
return city;
}
public void setCity (City city)
{
this.city = city;
}
///*
@Override
public String toString()
{
//return "ClassPojo [id = "+id+", first_name = "+first_name+", last_name = "+last_name+"]";
return String.format("Id:%s First Name:%s Last Name:%s", getId(), first_name, last_name);
}
//*/
}