Skip to content

Commit ab02959

Browse files
SDK regenerated by CI server [ci skip]
1 parent d197f6b commit ab02959

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ public enum ReportBuildOptions {
5050
NONE("None"),
5151
ALLOWMISSINGMEMBERS("AllowMissingMembers"),
5252
REMOVEEMPTYPARAGRAPHS("RemoveEmptyParagraphs"),
53-
INLINEERRORMESSAGES("InlineErrorMessages");
53+
INLINEERRORMESSAGES("InlineErrorMessages"),
54+
USELEGACYHEADERFOOTERVISITING("UseLegacyHeaderFooterVisiting");
5455

5556
private String value;
5657

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class ExecuteMailMergeOnlineRequest implements RequestIfc {
5252
private byte[] data;
5353

5454
/*
55-
* Mail merge options.
55+
* Field options.
5656
*/
5757
private FieldOptions options;
5858

@@ -76,7 +76,7 @@ public class ExecuteMailMergeOnlineRequest implements RequestIfc {
7676
*
7777
* @param byte[] template File with template.
7878
* @param byte[] data File with mailmerge data.
79-
* @param FieldOptions options Mail merge options.
79+
* @param FieldOptions options Field options.
8080
* @param Boolean withRegions The flag indicating whether to execute Mail Merge operation with regions.
8181
* @param String cleanup The cleanup options.
8282
* @param String documentFileName The filename of the output document, that will be used when the resulting document has a dynamic field {filename}. If it is not set, the "template" will be used instead.
@@ -119,14 +119,14 @@ public void setData(byte[] value) {
119119
}
120120

121121
/*
122-
* Gets Mail merge options.
122+
* Gets Field options.
123123
*/
124124
public FieldOptions getOptions() {
125125
return this.options;
126126
}
127127

128128
/*
129-
* Sets Mail merge options.
129+
* Sets Field options.
130130
*/
131131
public void setOptions(FieldOptions value) {
132132
this.options = value;

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class ExecuteMailMergeRequest implements RequestIfc {
5252
private String data;
5353

5454
/*
55-
* Mail merge options.
55+
* Field options.
5656
*/
5757
private FieldOptions options;
5858

@@ -106,7 +106,7 @@ public class ExecuteMailMergeRequest implements RequestIfc {
106106
*
107107
* @param String name The filename of the input document.
108108
* @param String data Mail merge data.
109-
* @param FieldOptions options Mail merge options.
109+
* @param FieldOptions options Field options.
110110
* @param String folder Original document folder.
111111
* @param String storage Original document storage.
112112
* @param String loadEncoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
@@ -161,14 +161,14 @@ public void setData(String value) {
161161
}
162162

163163
/*
164-
* Gets Mail merge options.
164+
* Gets Field options.
165165
*/
166166
public FieldOptions getOptions() {
167167
return this.options;
168168
}
169169

170170
/*
171-
* Sets Mail merge options.
171+
* Sets Field options.
172172
*/
173173
public void setOptions(FieldOptions value) {
174174
this.options = value;

0 commit comments

Comments
 (0)