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
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
45
+
key: "nodePath" value: (*string) The path to the node in the document tree.
46
+
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
47
+
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.
48
+
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.
49
+
key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
50
+
key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
51
+
key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
// DeleteStructuredDocumentTagRequest contains request data for WordsApiService.DeleteStructuredDocumentTag method.
39
+
typeDeleteStructuredDocumentTagRequeststruct {
40
+
// The filename of the input document.
41
+
Name*string
42
+
// Object index.
43
+
Index*int32
44
+
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
45
+
key: "nodePath" value: (*string) The path to the node in the document tree.
46
+
key: "folder" value: (*string) Original document folder.
47
+
key: "storage" value: (*string) Original document storage.
48
+
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
49
+
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.
50
+
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.
51
+
key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
52
+
key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
53
+
key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
0 commit comments