@@ -60,6 +60,9 @@ class ApplyStyleToDocumentElementRequest implements RequestBase {
6060 /// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
6161 final String ? encryptedPassword;
6262
63+ /// The value indicates whether OpenType support is on.
64+ final bool ? openTypeSupport;
65+
6366 /// 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.
6467 final String ? destFileName;
6568
@@ -75,7 +78,7 @@ class ApplyStyleToDocumentElementRequest implements RequestBase {
7578 /// Response receive data progress callback
7679 final ReceiveDataProgressCallback ? receiveDataProgressCallback;
7780
78- ApplyStyleToDocumentElementRequest (this .name, this .styledNodePath, this .styleApply, {this .folder, this .storage, this .loadEncoding, this .password, this .encryptedPassword, this .destFileName, this .revisionAuthor, this .revisionDateTime, this .sendDataProgressCallback, this .receiveDataProgressCallback});
81+ ApplyStyleToDocumentElementRequest (this .name, this .styledNodePath, this .styleApply, {this .folder, this .storage, this .loadEncoding, this .password, this .encryptedPassword, this .openTypeSupport, this . destFileName, this .revisionAuthor, this .revisionDateTime, this .sendDataProgressCallback, this .receiveDataProgressCallback});
7982
8083 @override
8184 Future <ApiRequestData > createRequestData (final ApiClient _apiClient) async {
@@ -113,6 +116,10 @@ class ApplyStyleToDocumentElementRequest implements RequestBase {
113116 _queryParams['encryptedPassword' ] = _apiClient.serializeToString (encryptedPassword) ?? "" ;
114117 }
115118
119+ if (openTypeSupport != null ) {
120+ _queryParams['openTypeSupport' ] = _apiClient.serializeToString (openTypeSupport) ?? "" ;
121+ }
122+
116123 if (destFileName != null ) {
117124 _queryParams['destFileName' ] = _apiClient.serializeToString (destFileName) ?? "" ;
118125 }
0 commit comments