Skip to content

Commit 1ae4f47

Browse files
author
evgeny.ivanov
committed
SDK regenerated by CI server [ci skip]
1 parent a111902 commit 1ae4f47

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Add this dependency to your project's POM:
161161
<dependency>
162162
<groupId>com.aspose</groupId>
163163
<artifactId>aspose-words-cloud</artifactId>
164-
<version>21.7.0</version>
164+
<version>21.8.0</version>
165165
</dependency>
166166
</dependencies>
167167
```

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>aspose-words-cloud</artifactId>
55
<packaging>jar</packaging>
66
<name>AsposeWordsCloud</name>
7-
<version>21.7.0</version>
7+
<version>21.8.0</version>
88
<url>https://www.aspose.cloud/</url>
99
<description>Aspose Words Java SDK</description>
1010
<scm>

src/main/java/com/aspose/words/cloud/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class ApiClient {
5656
private String apiVersion = "v4.0";
5757
private String baseUrl = "https://api.aspose.cloud";
5858
private String basePath = baseUrl + "/" + apiVersion;
59-
private String clientVersion = "21.7";
59+
private String clientVersion = "21.8";
6060
private boolean debugging = false;
6161
private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
6262
private String tempFolderPath = null;

src/main/java/com/aspose/words/cloud/model/CompareData.java

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)