Update OptimizePdfRequest.java

This commit is contained in:
Anthony Stirling
2025-01-16 17:26:57 +00:00
committed by GitHub
parent db945bc833
commit 3f5b510267

View File

@@ -26,7 +26,7 @@ public class OptimizePdfRequest extends PDFFile {
@Schema(
description =
"Whether to normalize the PDF content for better compatibility. Default is true.",
defaultValue = "true")
private Boolean normalize = true;
"Whether to normalize the PDF content for better compatibility. Default is false.",
defaultValue = "false")
private Boolean normalize = false;
}