File tree Expand file tree Collapse file tree 2 files changed +2
-47
lines changed
src/main/java/com/box/sdkgen/schemas/clienterror Expand file tree Collapse file tree 2 files changed +2
-47
lines changed Original file line number Diff line number Diff line change 1
- { "engineHash" : " 2443714" , "specHash" : " 9f75129 " , "version" : " 0.1.0" }
1
+ { "engineHash" : " 2443714" , "specHash" : " abd6037 " , "version" : " 0.1.0" }
Original file line number Diff line number Diff line change 1
1
package com .box .sdkgen .schemas .clienterror ;
2
2
3
- import java .util .Objects ;
4
-
5
3
public class ClientErrorContextInfoField {
6
4
7
- protected String message ;
8
-
9
- public ClientErrorContextInfoField () {}
10
-
11
- protected ClientErrorContextInfoField (ClientErrorContextInfoFieldBuilder builder ) {
12
- this .message = builder .message ;
13
- }
14
-
15
- public String getMessage () {
16
- return message ;
17
- }
18
-
19
- @ Override
20
- public boolean equals (Object o ) {
21
- if (this == o ) {
22
- return true ;
23
- }
24
- if (o == null || getClass () != o .getClass ()) {
25
- return false ;
26
- }
27
- ClientErrorContextInfoField casted = (ClientErrorContextInfoField ) o ;
28
- return Objects .equals (message , casted .message );
29
- }
30
-
31
- @ Override
32
- public int hashCode () {
33
- return Objects .hash (message );
34
- }
35
-
36
5
@ Override
37
6
public String toString () {
38
- return "ClientErrorContextInfoField{" + "message='" + message + '\'' + "}" ;
39
- }
40
-
41
- public static class ClientErrorContextInfoFieldBuilder {
42
-
43
- protected String message ;
44
-
45
- public ClientErrorContextInfoFieldBuilder message (String message ) {
46
- this .message = message ;
47
- return this ;
48
- }
49
-
50
- public ClientErrorContextInfoField build () {
51
- return new ClientErrorContextInfoField (this );
52
- }
7
+ return "ClientErrorContextInfoField{" + "}" ;
53
8
}
54
9
}
You can’t perform that action at this time.
0 commit comments