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: lib/aspose_words_cloud/models/requests/convert_document_request.rb
+22-1Lines changed: 22 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,15 @@ class ConvertDocumentRequest
44
44
# Original document storage.
45
45
attr_accessor:storage
46
46
47
+
# Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
48
+
attr_accessor:load_encoding
49
+
50
+
# 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.
51
+
attr_accessor:password
52
+
53
+
# Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
54
+
attr_accessor:encrypted_password
55
+
47
56
# Folder in filestorage with custom fonts.
48
57
attr_accessor:fonts_location
49
58
@@ -54,14 +63,20 @@ class ConvertDocumentRequest
54
63
# @param out_path The path to the output document on a local storage.
55
64
# @param file_name_field_value 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 "sourceFilename" will be used instead.
56
65
# @param storage Original document storage.
66
+
# @param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
67
+
# @param password 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.
68
+
# @param encrypted_password Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
57
69
# @param fonts_location Folder in filestorage with custom fonts.
0 commit comments