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
// AcceptAllRevisionsOnlineRequest contains request data for WordsApiService.AcceptAllRevisionsOnline method.
40
+
typeAcceptAllRevisionsOnlineRequeststruct {
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: "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. */
// AcceptAllRevisionsRequest contains request data for WordsApiService.AcceptAllRevisions method.
39
+
typeAcceptAllRevisionsRequeststruct {
40
+
// The filename of the input document.
41
+
Name*string
42
+
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
43
+
key: "folder" value: (*string) Original document folder.
44
+
key: "storage" value: (*string) Original document storage.
45
+
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
46
+
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.
47
+
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.
48
+
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. */
0 commit comments