@@ -504,6 +504,9 @@ public ZoomBehaviorEnum read(final JsonReader jsonReader) throws IOException {
504504 @ SerializedName ("PreserveFormFields" )
505505 protected Boolean preserveFormFields ;
506506
507+ @ SerializedName ("RenderChoiceFormFieldBorder" )
508+ protected Boolean renderChoiceFormFieldBorder ;
509+
507510 @ SerializedName ("TextCompression" )
508511 protected TextCompressionEnum textCompression ;
509512
@@ -959,6 +962,27 @@ public void setPreserveFormFields(Boolean preserveFormFields) {
959962 }
960963
961964
965+ /**
966+ * Gets or sets a value indicating whether to render PDF choice form field border.
967+ * PDF choice form fields are used for export of SDT Combo Box Content Control, SDT Drop-Down List Content
968+ * Control and legacy Drop-Down Form Field when PreserveFormFields option is enabled.The default value is true.
969+ * @return renderChoiceFormFieldBorder
970+ **/
971+ @ ApiModelProperty (value = "Gets or sets a value indicating whether to render PDF choice form field border. PDF choice form fields are used for export of SDT Combo Box Content Control, SDT Drop-Down List Content Control and legacy Drop-Down Form Field when PreserveFormFields option is enabled.The default value is true." )
972+ public Boolean getRenderChoiceFormFieldBorder () {
973+ return renderChoiceFormFieldBorder ;
974+ }
975+
976+ public PdfSaveOptionsData renderChoiceFormFieldBorder (Boolean renderChoiceFormFieldBorder ) {
977+ this .renderChoiceFormFieldBorder = renderChoiceFormFieldBorder ;
978+ return this ;
979+ }
980+
981+ public void setRenderChoiceFormFieldBorder (Boolean renderChoiceFormFieldBorder ) {
982+ this .renderChoiceFormFieldBorder = renderChoiceFormFieldBorder ;
983+ }
984+
985+
962986 /**
963987 * Gets or sets the compression type to be used for all textual content in the document.
964988 * @return textCompression
@@ -1099,6 +1123,7 @@ public PdfSaveOptionsData() {
10991123 this .pageMode = null ;
11001124 this .preblendImages = null ;
11011125 this .preserveFormFields = null ;
1126+ this .renderChoiceFormFieldBorder = null ;
11021127 this .textCompression = null ;
11031128 this .useBookFoldPrintingSettings = null ;
11041129 this .useCoreFonts = null ;
@@ -1169,6 +1194,7 @@ public void validate() throws ApiException {
11691194
11701195
11711196
1197+
11721198 }
11731199
11741200 @ Override
@@ -1204,6 +1230,7 @@ public boolean equals(java.lang.Object o) {
12041230 Objects .equals (this .pageMode , pdfSaveOptionsData .pageMode ) &&
12051231 Objects .equals (this .preblendImages , pdfSaveOptionsData .preblendImages ) &&
12061232 Objects .equals (this .preserveFormFields , pdfSaveOptionsData .preserveFormFields ) &&
1233+ Objects .equals (this .renderChoiceFormFieldBorder , pdfSaveOptionsData .renderChoiceFormFieldBorder ) &&
12071234 Objects .equals (this .textCompression , pdfSaveOptionsData .textCompression ) &&
12081235 Objects .equals (this .useBookFoldPrintingSettings , pdfSaveOptionsData .useBookFoldPrintingSettings ) &&
12091236 Objects .equals (this .useCoreFonts , pdfSaveOptionsData .useCoreFonts ) &&
@@ -1215,7 +1242,7 @@ public boolean equals(java.lang.Object o) {
12151242
12161243 @ Override
12171244 public int hashCode () {
1218- return Objects .hash (cacheBackgroundGraphics , compliance , createNoteHyperlinks , customPropertiesExport , digitalSignatureDetails , displayDocTitle , downsampleOptions , embedAttachments , embedFullFonts , encryptionDetails , exportDocumentStructure , exportLanguageToSpanTag , fontEmbeddingMode , headerFooterBookmarksExportMode , imageColorSpaceExportMode , imageCompression , interpolateImages , openHyperlinksInNewWindow , outlineOptions , pageMode , preblendImages , preserveFormFields , textCompression , useBookFoldPrintingSettings , useCoreFonts , useSdtTagAsFormFieldName , zoomBehavior , zoomFactor , super .hashCode ());
1245+ return Objects .hash (cacheBackgroundGraphics , compliance , createNoteHyperlinks , customPropertiesExport , digitalSignatureDetails , displayDocTitle , downsampleOptions , embedAttachments , embedFullFonts , encryptionDetails , exportDocumentStructure , exportLanguageToSpanTag , fontEmbeddingMode , headerFooterBookmarksExportMode , imageColorSpaceExportMode , imageCompression , interpolateImages , openHyperlinksInNewWindow , outlineOptions , pageMode , preblendImages , preserveFormFields , renderChoiceFormFieldBorder , textCompression , useBookFoldPrintingSettings , useCoreFonts , useSdtTagAsFormFieldName , zoomBehavior , zoomFactor , super .hashCode ());
12191246 }
12201247
12211248 @ Override
@@ -1263,6 +1290,7 @@ public String toString() {
12631290 sb .append (" pageMode: " ).append (toIndentedString (getPageMode ())).append ("\n " );
12641291 sb .append (" preblendImages: " ).append (toIndentedString (getPreblendImages ())).append ("\n " );
12651292 sb .append (" preserveFormFields: " ).append (toIndentedString (getPreserveFormFields ())).append ("\n " );
1293+ sb .append (" renderChoiceFormFieldBorder: " ).append (toIndentedString (getRenderChoiceFormFieldBorder ())).append ("\n " );
12661294 sb .append (" textCompression: " ).append (toIndentedString (getTextCompression ())).append ("\n " );
12671295 sb .append (" useBookFoldPrintingSettings: " ).append (toIndentedString (getUseBookFoldPrintingSettings ())).append ("\n " );
12681296 sb .append (" useCoreFonts: " ).append (toIndentedString (getUseCoreFonts ())).append ("\n " );
0 commit comments