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: src/model/model.ts
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2680,6 +2680,21 @@ export class ConvertDocumentRequest implements RequestInterface {
2680
2680
*/
2681
2681
public storage: string;
2682
2682
2683
+
/**
2684
+
* Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
2685
+
*/
2686
+
public loadEncoding: string;
2687
+
2688
+
/**
2689
+
* 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.
2690
+
*/
2691
+
public password: string;
2692
+
2693
+
/**
2694
+
* Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
2695
+
*/
2696
+
public encryptedPassword: string;
2697
+
2683
2698
/**
2684
2699
* Folder in filestorage with custom fonts.
2685
2700
*/
@@ -2719,6 +2734,9 @@ export class ConvertDocumentRequest implements RequestInterface {
0 commit comments