@@ -58,6 +58,9 @@ public class CompareData {
5858
5959 @ SerializedName ("DateTime" )
6060 private OffsetDateTime dateTime = null ;
61+
62+ @ SerializedName ("ResultDocumentFormat" )
63+ private String resultDocumentFormat = null ;
6164 public CompareData author (String author ) {
6265 this .author = author ;
6366 return this ;
@@ -130,6 +133,24 @@ public void setDateTime(OffsetDateTime dateTime) {
130133 this .dateTime = dateTime ;
131134 }
132135
136+ public CompareData resultDocumentFormat (String resultDocumentFormat ) {
137+ this .resultDocumentFormat = resultDocumentFormat ;
138+ return this ;
139+ }
140+
141+ /**
142+ * Gets or sets the result document format.
143+ * @return resultDocumentFormat
144+ **/
145+ @ ApiModelProperty (value = "Gets or sets the result document format." )
146+ public String getResultDocumentFormat () {
147+ return resultDocumentFormat ;
148+ }
149+
150+ public void setResultDocumentFormat (String resultDocumentFormat ) {
151+ this .resultDocumentFormat = resultDocumentFormat ;
152+ }
153+
133154 @ Override
134155 public boolean equals (java .lang .Object o ) {
135156 if (this == o ) {
@@ -144,12 +165,13 @@ public boolean equals(java.lang.Object o) {
144165 Objects .equals (this .author , compareData .author ) &&
145166 Objects .equals (this .compareOptions , compareData .compareOptions ) &&
146167 Objects .equals (this .comparingWithDocument , compareData .comparingWithDocument ) &&
147- Objects .equals (this .dateTime , compareData .dateTime );
168+ Objects .equals (this .dateTime , compareData .dateTime ) &&
169+ Objects .equals (this .resultDocumentFormat , compareData .resultDocumentFormat );
148170 }
149171
150172 @ Override
151173 public int hashCode () {
152- return Objects .hash (author , compareOptions , comparingWithDocument , dateTime );
174+ return Objects .hash (author , compareOptions , comparingWithDocument , dateTime , resultDocumentFormat );
153175 }
154176
155177 @ Override
@@ -160,6 +182,7 @@ public String toString() {
160182 sb .append (" compareOptions: " ).append (toIndentedString (compareOptions )).append ("\n " );
161183 sb .append (" comparingWithDocument: " ).append (toIndentedString (comparingWithDocument )).append ("\n " );
162184 sb .append (" dateTime: " ).append (toIndentedString (dateTime )).append ("\n " );
185+ sb .append (" resultDocumentFormat: " ).append (toIndentedString (resultDocumentFormat )).append ("\n " );
163186 sb .append ("}" );
164187 return sb .toString ();
165188 }
0 commit comments