You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev/api/models/execute_mail_merge_online_request.go
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@ type ExecuteMailMergeOnlineRequest struct {
44
44
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
45
45
key: "options" value: (IFieldOptions) Field options.
46
46
key: "withRegions" value: (*bool) The flag indicating whether to execute Mail Merge operation with regions.
47
+
key: "mergeWholeDocument" value: (*bool) The flag indicating whether fields in whole document are updated while executing of a mail merge with regions.
47
48
key: "cleanup" value: (*string) The cleanup options.
48
49
key: "documentFileName" value: (*string) 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. */
Copy file name to clipboardExpand all lines: dev/api/models/execute_mail_merge_request.go
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,7 @@ type ExecuteMailMergeRequest struct {
54
54
key: "mailMergeDataFile" value: (*string) The data file.
55
55
key: "cleanup" value: (*string) The cleanup options.
56
56
key: "useWholeParagraphAsRegion" value: (*bool) The flag indicating whether paragraph with TableStart or TableEnd field should be fully included into mail merge region or particular range between TableStart and TableEnd fields. The default value is true.
57
+
key: "mergeWholeDocument" value: (*bool) The flag indicating whether fields in whole document are updated while executing of a mail merge with regions.
57
58
key: "destFileName" value: (*string) The filename of the output document. If this parameter is omitted, the result will be saved with autogenerated name. */
// GetSignaturesOnlineRequest contains request data for WordsApiService.GetSignaturesOnline method.
40
+
typeGetSignaturesOnlineRequeststruct {
41
+
// The document.
42
+
Document io.ReadCloser
43
+
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
44
+
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
45
+
key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
46
+
key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
47
+
key: "openTypeSupport" value: (*bool) The value indicates whether OpenType support is on. */
// GetSignaturesRequest contains request data for WordsApiService.GetSignatures method.
41
+
typeGetSignaturesRequeststruct {
42
+
// The filename of the Word document.
43
+
Name*string
44
+
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
45
+
key: "folder" value: (*string) Original document folder.
46
+
key: "storage" value: (*string) Original document storage.
47
+
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
48
+
key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
49
+
key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
50
+
key: "openTypeSupport" value: (*bool) The value indicates whether OpenType support is on. */
0 commit comments