@@ -29,6 +29,11 @@ public class ProcessRequest {
2929 @ SerializedName (SERIALIZED_NAME_LIST )
3030 private List <ProcessRequestImage > list = new ArrayList <ProcessRequestImage >();
3131
32+ public static final String SERIALIZED_NAME_SYSTEM_INFO = "systemInfo" ;
33+
34+ @ SerializedName (SERIALIZED_NAME_SYSTEM_INFO )
35+ private ProcessSystemInfo systemInfo ;
36+
3237 public ProcessRequest withProcessParam (ProcessParams processParam ) {
3338 this .processParam = processParam ;
3439 return this ;
@@ -70,6 +75,25 @@ public void setList(List<ProcessRequestImage> list) {
7075 this .list = list ;
7176 }
7277
78+ public ProcessRequest withSystemInfo (ProcessSystemInfo systemInfo ) {
79+ this .systemInfo = systemInfo ;
80+ return this ;
81+ }
82+
83+ /**
84+ * Get systemInfo
85+ *
86+ * @return systemInfo
87+ */
88+ @ javax .annotation .Nullable
89+ public ProcessSystemInfo getSystemInfo () {
90+ return systemInfo ;
91+ }
92+
93+ public void setSystemInfo (ProcessSystemInfo systemInfo ) {
94+ this .systemInfo = systemInfo ;
95+ }
96+
7397 @ Override
7498 public boolean equals (java .lang .Object o ) {
7599 if (this == o ) {
@@ -80,12 +104,13 @@ public boolean equals(java.lang.Object o) {
80104 }
81105 ProcessRequest processRequest = (ProcessRequest ) o ;
82106 return Objects .equals (this .processParam , processRequest .processParam )
83- && Objects .equals (this .list , processRequest .list );
107+ && Objects .equals (this .list , processRequest .list )
108+ && Objects .equals (this .systemInfo , processRequest .systemInfo );
84109 }
85110
86111 @ Override
87112 public int hashCode () {
88- return Objects .hash (processParam , list );
113+ return Objects .hash (processParam , list , systemInfo );
89114 }
90115
91116 @ Override
@@ -94,6 +119,7 @@ public String toString() {
94119 sb .append ("class ProcessRequest {\n " );
95120 sb .append (" processParam: " ).append (toIndentedString (processParam )).append ("\n " );
96121 sb .append (" list: " ).append (toIndentedString (list )).append ("\n " );
122+ sb .append (" systemInfo: " ).append (toIndentedString (systemInfo )).append ("\n " );
97123 sb .append ("}" );
98124 return sb .toString ();
99125 }
0 commit comments