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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;
}