@@ -19950,6 +19950,9 @@ namespace aspose::words::cloud::models {
1995019950 if (this->m_PreserveFormFields) {
1995119951 json["PreserveFormFields"] = *(this->m_PreserveFormFields);
1995219952 }
19953+ if (this->m_RenderChoiceFormFieldBorder) {
19954+ json["RenderChoiceFormFieldBorder"] = *(this->m_RenderChoiceFormFieldBorder);
19955+ }
1995319956 if (this->m_TextCompression) {
1995419957 json["TextCompression"] = pdfSaveOptionsDataTextCompressionToString(*(this->m_TextCompression));
1995519958 }
@@ -20079,6 +20082,11 @@ namespace aspose::words::cloud::models {
2007920082 json["PreserveFormFields"].get< bool >()
2008020083 );
2008120084 }
20085+ if (json.contains("RenderChoiceFormFieldBorder") && !json["RenderChoiceFormFieldBorder"].is_null()) {
20086+ this->m_RenderChoiceFormFieldBorder = std::make_shared< bool >(
20087+ json["RenderChoiceFormFieldBorder"].get< bool >()
20088+ );
20089+ }
2008220090 if (json.contains("TextCompression") && !json["TextCompression"].is_null()) {
2008320091 this->m_TextCompression = std::make_shared< aspose::words::cloud::models::PdfSaveOptionsData::TextCompression >(
2008420092 pdfSaveOptionsDataTextCompressionFromString(json["TextCompression"].get< std::string >())
@@ -20171,6 +20179,7 @@ namespace aspose::words::cloud::models {
2017120179
2017220180
2017320181
20182+
2017420183 }
2017520184
2017620185 std::shared_ptr< bool > PdfSaveOptionsData::getCacheBackgroundGraphics() const
@@ -20415,6 +20424,17 @@ namespace aspose::words::cloud::models {
2041520424 }
2041620425
2041720426
20427+ std::shared_ptr< bool > PdfSaveOptionsData::getRenderChoiceFormFieldBorder() const
20428+ {
20429+ return this->m_RenderChoiceFormFieldBorder;
20430+ }
20431+
20432+ void PdfSaveOptionsData::setRenderChoiceFormFieldBorder(std::shared_ptr< bool > value)
20433+ {
20434+ this->m_RenderChoiceFormFieldBorder = value;
20435+ }
20436+
20437+
2041820438 std::shared_ptr< aspose::words::cloud::models::PdfSaveOptionsData::TextCompression > PdfSaveOptionsData::getTextCompression() const
2041920439 {
2042020440 return this->m_TextCompression;
@@ -21443,6 +21463,9 @@ namespace aspose::words::cloud::models {
2144321463 void ReplaceTextParameters::toJson(void* jsonIfc) const
2144421464 {
2144521465 ::nlohmann::json& json = *((::nlohmann::json*)jsonIfc);
21466+ if (this->m_ApplySuperscript) {
21467+ json["ApplySuperscript"] = *(this->m_ApplySuperscript);
21468+ }
2144621469 if (this->m_IsMatchCase) {
2144721470 json["IsMatchCase"] = *(this->m_IsMatchCase);
2144821471 }
@@ -21463,6 +21486,11 @@ namespace aspose::words::cloud::models {
2146321486 void ReplaceTextParameters::fromJson(const void* jsonIfc)
2146421487 {
2146521488 ::nlohmann::json& json = *((::nlohmann::json*)jsonIfc);
21489+ if (json.contains("ApplySuperscript") && !json["ApplySuperscript"].is_null()) {
21490+ this->m_ApplySuperscript = std::make_shared< bool >(
21491+ json["ApplySuperscript"].get< bool >()
21492+ );
21493+ }
2146621494 if (json.contains("IsMatchCase") && !json["IsMatchCase"].is_null()) {
2146721495 this->m_IsMatchCase = std::make_shared< bool >(
2146821496 json["IsMatchCase"].get< bool >()
@@ -21523,6 +21551,17 @@ namespace aspose::words::cloud::models {
2152321551
2152421552 }
2152521553
21554+ std::shared_ptr< bool > ReplaceTextParameters::getApplySuperscript() const
21555+ {
21556+ return this->m_ApplySuperscript;
21557+ }
21558+
21559+ void ReplaceTextParameters::setApplySuperscript(std::shared_ptr< bool > value)
21560+ {
21561+ this->m_ApplySuperscript = value;
21562+ }
21563+
21564+
2152621565 std::shared_ptr< bool > ReplaceTextParameters::getIsMatchCase() const
2152721566 {
2152821567 return this->m_IsMatchCase;
0 commit comments