Skip to content

Commit db5d3dd

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents e054043 + 2ac6577 commit db5d3dd

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

src/main/java/com/aspose/words/cloud/api/WordsApi.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18308,7 +18308,7 @@ private com.squareup.okhttp.Call saveAsOnlineValidateBeforeCall(SaveAsOnlineRequ
1830818308
}
1830918309

1831018310
/**
18311-
* Converts a document in cloud storage to the specified format.
18311+
* Converts a document to the specified format.
1831218312
* @param request Request object
1831318313
* @return SaveAsOnlineResponse
1831418314
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -18330,7 +18330,7 @@ public SaveAsOnlineResponse saveAsOnline(SaveAsOnlineRequest request) throws Api
1833018330
}
1833118331

1833218332
/**
18333-
* Converts a document in cloud storage to the specified format.
18333+
* Converts a document to the specified format.
1833418334
* @param request Request object
1833518335
* @return ApiResponse< SaveAsOnlineResponse >;
1833618336
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -18344,7 +18344,7 @@ private ApiResponse< SaveAsOnlineResponse > saveAsOnlineWithHttpInfo(SaveAsOnlin
1834418344
}
1834518345

1834618346
/**
18347-
* Converts a document in cloud storage to the specified format. (asynchronously)
18347+
* Converts a document to the specified format. (asynchronously)
1834818348
* @param request Request object
1834918349
* @param callback The callback to be executed when the API call finishes
1835018350
* @return The request call
@@ -18608,7 +18608,7 @@ private com.squareup.okhttp.Call saveAsTiffOnlineValidateBeforeCall(SaveAsTiffOn
1860818608
}
1860918609

1861018610
/**
18611-
* Converts a document in cloud storage to TIFF format using detailed conversion settings.
18611+
* Converts a document to TIFF format using detailed conversion settings.
1861218612
* @param request Request object
1861318613
* @return SaveAsTiffOnlineResponse
1861418614
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -18630,7 +18630,7 @@ public SaveAsTiffOnlineResponse saveAsTiffOnline(SaveAsTiffOnlineRequest request
1863018630
}
1863118631

1863218632
/**
18633-
* Converts a document in cloud storage to TIFF format using detailed conversion settings.
18633+
* Converts a document to TIFF format using detailed conversion settings.
1863418634
* @param request Request object
1863518635
* @return ApiResponse< SaveAsTiffOnlineResponse >;
1863618636
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -18644,7 +18644,7 @@ private ApiResponse< SaveAsTiffOnlineResponse > saveAsTiffOnlineWithHttpInfo(Sav
1864418644
}
1864518645

1864618646
/**
18647-
* Converts a document in cloud storage to TIFF format using detailed conversion settings. (asynchronously)
18647+
* Converts a document to TIFF format using detailed conversion settings. (asynchronously)
1864818648
* @param request Request object
1864918649
* @param callback The callback to be executed when the API call finishes
1865018650
* @return The request call

src/main/java/com/aspose/words/cloud/model/requests/AppendDocumentOnlineRequest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
*/
4343
public class AppendDocumentOnlineRequest implements RequestIfc {
4444
/*
45-
* The document.
45+
* Original document.
4646
*/
4747
private byte[] document;
4848

@@ -79,7 +79,7 @@ public class AppendDocumentOnlineRequest implements RequestIfc {
7979
/*
8080
* Initializes a new instance of the AppendDocumentOnlineRequest class.
8181
*
82-
* @param byte[] document The document.
82+
* @param byte[] document Original document.
8383
* @param DocumentEntryList documentList <see cref="DocumentEntryList"/> with a list of documents to append.
8484
* @param String loadEncoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
8585
* @param String password Password for opening an encrypted document.
@@ -98,14 +98,14 @@ public AppendDocumentOnlineRequest(byte[] document, DocumentEntryList documentLi
9898
}
9999

100100
/*
101-
* Gets The document.
101+
* Gets Original document.
102102
*/
103103
public byte[] getDocument() {
104104
return this.document;
105105
}
106106

107107
/*
108-
* Sets The document.
108+
* Sets Original document.
109109
*/
110110
public void setDocument(byte[] value) {
111111
this.document = value;

src/main/java/com/aspose/words/cloud/model/requests/GetDocumentFieldNamesOnlineRequest.java

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
*/
4343
public class GetDocumentFieldNamesOnlineRequest implements RequestIfc {
4444
/*
45-
* The document.
45+
* The template document.
4646
*/
47-
private byte[] document;
47+
private byte[] template;
4848

4949
/*
5050
* Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
@@ -64,30 +64,30 @@ public class GetDocumentFieldNamesOnlineRequest implements RequestIfc {
6464
/*
6565
* Initializes a new instance of the GetDocumentFieldNamesOnlineRequest class.
6666
*
67-
* @param byte[] document The document.
67+
* @param byte[] template The template document.
6868
* @param String loadEncoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
6969
* @param String password Password for opening an encrypted document.
7070
* @param Boolean useNonMergeFields The flag indicating whether to use non merge fields. If true, result includes "mustache" field names.
7171
*/
72-
public GetDocumentFieldNamesOnlineRequest(byte[] document, String loadEncoding, String password, Boolean useNonMergeFields) {
73-
this.document = document;
72+
public GetDocumentFieldNamesOnlineRequest(byte[] template, String loadEncoding, String password, Boolean useNonMergeFields) {
73+
this.template = template;
7474
this.loadEncoding = loadEncoding;
7575
this.password = password;
7676
this.useNonMergeFields = useNonMergeFields;
7777
}
7878

7979
/*
80-
* Gets The document.
80+
* Gets The template document.
8181
*/
82-
public byte[] getDocument() {
83-
return this.document;
82+
public byte[] getTemplate() {
83+
return this.template;
8484
}
8585

8686
/*
87-
* Sets The document.
87+
* Sets The template document.
8888
*/
89-
public void setDocument(byte[] value) {
90-
this.document = value;
89+
public void setTemplate(byte[] value) {
90+
this.template = value;
9191
}
9292

9393
/*
@@ -141,9 +141,9 @@ public void setUseNonMergeFields(Boolean value) {
141141
* @throws IOException If fail to serialize the request body object
142142
*/
143143
public Request buildHttpRequest(ApiClient apiClient, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener, Boolean addAuthHeaders) throws ApiException, IOException {
144-
// verify the required parameter 'Document' is set
145-
if (getDocument() == null) {
146-
throw new ApiException(apiClient.getBadRequestCode(), "Missing the required parameter 'Document' when calling getDocumentFieldNamesOnline");
144+
// verify the required parameter 'Template' is set
145+
if (getTemplate() == null) {
146+
throw new ApiException(apiClient.getBadRequestCode(), "Missing the required parameter 'Template' when calling getDocumentFieldNamesOnline");
147147
}
148148

149149
Object localVarPostBody = null;
@@ -161,8 +161,8 @@ public Request buildHttpRequest(ApiClient apiClient, final ProgressResponseBody.
161161
Map<String, String> localVarHeaderParams = new HashMap<String, String>();
162162

163163
Map<String, Object> localVarFormParams = new LinkedHashMap<String, Object>();
164-
if (getDocument() != null)
165-
localVarFormParams.put("Document", getDocument());
164+
if (getTemplate() != null)
165+
localVarFormParams.put("Template", getTemplate());
166166

167167
final String[] localVarAccepts = {
168168
"application/xml", "application/json"

0 commit comments

Comments
 (0)