10
10
11
11
12
12
13
- public class Body2 {
13
+ public class FakeBody {
14
14
@ JsonProperty ("integer" )
15
15
private Integer integer = null ;
16
16
@ JsonProperty ("int32" )
@@ -44,7 +44,7 @@ public class Body2 {
44
44
* minimum: 10
45
45
* maximum: 100
46
46
**/
47
- public Body2 integer (Integer integer ) {
47
+ public FakeBody integer (Integer integer ) {
48
48
this .integer = integer ;
49
49
return this ;
50
50
}
@@ -64,7 +64,7 @@ public void setInteger(Integer integer) {
64
64
* minimum: 20
65
65
* maximum: 200
66
66
**/
67
- public Body2 int32 (Integer int32 ) {
67
+ public FakeBody int32 (Integer int32 ) {
68
68
this .int32 = int32 ;
69
69
return this ;
70
70
}
@@ -82,7 +82,7 @@ public void setInt32(Integer int32) {
82
82
/**
83
83
* None
84
84
**/
85
- public Body2 int64 (Long int64 ) {
85
+ public FakeBody int64 (Long int64 ) {
86
86
this .int64 = int64 ;
87
87
return this ;
88
88
}
@@ -102,7 +102,7 @@ public void setInt64(Long int64) {
102
102
* minimum: 32
103
103
* maximum: 543
104
104
**/
105
- public Body2 number (BigDecimal number ) {
105
+ public FakeBody number (BigDecimal number ) {
106
106
this .number = number ;
107
107
return this ;
108
108
}
@@ -121,7 +121,7 @@ public void setNumber(BigDecimal number) {
121
121
* None
122
122
* maximum: 987
123
123
**/
124
- public Body2 _float (Float _float ) {
124
+ public FakeBody _float (Float _float ) {
125
125
this ._float = _float ;
126
126
return this ;
127
127
}
@@ -141,7 +141,7 @@ public void setFloat(Float _float) {
141
141
* minimum: 67
142
142
* maximum: 123
143
143
**/
144
- public Body2 _double (Double _double ) {
144
+ public FakeBody _double (Double _double ) {
145
145
this ._double = _double ;
146
146
return this ;
147
147
}
@@ -159,7 +159,7 @@ public void setDouble(Double _double) {
159
159
/**
160
160
* None
161
161
**/
162
- public Body2 string (String string ) {
162
+ public FakeBody string (String string ) {
163
163
this .string = string ;
164
164
return this ;
165
165
}
@@ -177,7 +177,7 @@ public void setString(String string) {
177
177
/**
178
178
* None
179
179
**/
180
- public Body2 patternWithoutDelimiter (String patternWithoutDelimiter ) {
180
+ public FakeBody patternWithoutDelimiter (String patternWithoutDelimiter ) {
181
181
this .patternWithoutDelimiter = patternWithoutDelimiter ;
182
182
return this ;
183
183
}
@@ -195,7 +195,7 @@ public void setPatternWithoutDelimiter(String patternWithoutDelimiter) {
195
195
/**
196
196
* None
197
197
**/
198
- public Body2 _byte (byte [] _byte ) {
198
+ public FakeBody _byte (byte [] _byte ) {
199
199
this ._byte = _byte ;
200
200
return this ;
201
201
}
@@ -213,7 +213,7 @@ public void setByte(byte[] _byte) {
213
213
/**
214
214
* None
215
215
**/
216
- public Body2 binary (File binary ) {
216
+ public FakeBody binary (File binary ) {
217
217
this .binary = binary ;
218
218
return this ;
219
219
}
@@ -231,7 +231,7 @@ public void setBinary(File binary) {
231
231
/**
232
232
* None
233
233
**/
234
- public Body2 date (Date date ) {
234
+ public FakeBody date (Date date ) {
235
235
this .date = date ;
236
236
return this ;
237
237
}
@@ -249,7 +249,7 @@ public void setDate(Date date) {
249
249
/**
250
250
* None
251
251
**/
252
- public Body2 dateTime (Date dateTime ) {
252
+ public FakeBody dateTime (Date dateTime ) {
253
253
this .dateTime = dateTime ;
254
254
return this ;
255
255
}
@@ -267,7 +267,7 @@ public void setDateTime(Date dateTime) {
267
267
/**
268
268
* None
269
269
**/
270
- public Body2 password (String password ) {
270
+ public FakeBody password (String password ) {
271
271
this .password = password ;
272
272
return this ;
273
273
}
@@ -285,7 +285,7 @@ public void setPassword(String password) {
285
285
/**
286
286
* None
287
287
**/
288
- public Body2 callback (String callback ) {
288
+ public FakeBody callback (String callback ) {
289
289
this .callback = callback ;
290
290
return this ;
291
291
}
@@ -309,21 +309,21 @@ public boolean equals(java.lang.Object o) {
309
309
if (o == null || getClass () != o .getClass ()) {
310
310
return false ;
311
311
}
312
- Body2 body2 = (Body2 ) o ;
313
- return Objects .equals (integer , body2 .integer ) &&
314
- Objects .equals (int32 , body2 .int32 ) &&
315
- Objects .equals (int64 , body2 .int64 ) &&
316
- Objects .equals (number , body2 .number ) &&
317
- Objects .equals (_float , body2 ._float ) &&
318
- Objects .equals (_double , body2 ._double ) &&
319
- Objects .equals (string , body2 .string ) &&
320
- Objects .equals (patternWithoutDelimiter , body2 .patternWithoutDelimiter ) &&
321
- Objects .equals (_byte , body2 ._byte ) &&
322
- Objects .equals (binary , body2 .binary ) &&
323
- Objects .equals (date , body2 .date ) &&
324
- Objects .equals (dateTime , body2 .dateTime ) &&
325
- Objects .equals (password , body2 .password ) &&
326
- Objects .equals (callback , body2 .callback );
312
+ FakeBody fakeBody = (FakeBody ) o ;
313
+ return Objects .equals (integer , fakeBody .integer ) &&
314
+ Objects .equals (int32 , fakeBody .int32 ) &&
315
+ Objects .equals (int64 , fakeBody .int64 ) &&
316
+ Objects .equals (number , fakeBody .number ) &&
317
+ Objects .equals (_float , fakeBody ._float ) &&
318
+ Objects .equals (_double , fakeBody ._double ) &&
319
+ Objects .equals (string , fakeBody .string ) &&
320
+ Objects .equals (patternWithoutDelimiter , fakeBody .patternWithoutDelimiter ) &&
321
+ Objects .equals (_byte , fakeBody ._byte ) &&
322
+ Objects .equals (binary , fakeBody .binary ) &&
323
+ Objects .equals (date , fakeBody .date ) &&
324
+ Objects .equals (dateTime , fakeBody .dateTime ) &&
325
+ Objects .equals (password , fakeBody .password ) &&
326
+ Objects .equals (callback , fakeBody .callback );
327
327
}
328
328
329
329
@ Override
@@ -334,7 +334,7 @@ public int hashCode() {
334
334
@ Override
335
335
public String toString () {
336
336
StringBuilder sb = new StringBuilder ();
337
- sb .append ("class Body2 {\n " );
337
+ sb .append ("class FakeBody {\n " );
338
338
sb .append (" integer: " ).append (toIndentedString (integer )).append ("\n " );
339
339
sb .append (" int32: " ).append (toIndentedString (int32 )).append ("\n " );
340
340
sb .append (" int64: " ).append (toIndentedString (int64 )).append ("\n " );
0 commit comments