Represents default suffix value, which is “Redacted”.
Example
fromgroupdocs.redactionimportRedactorfromgroupdocs.redaction.optionsimportSaveOptionsfromgroupdocs.redaction.redactionsimportExactPhraseRedaction,ReplacementOptionsdefsave_with_default_options():repl_opt=ReplacementOptions("[personal]")ex_red=ExactPhraseRedaction("John Doe",repl_opt)withRedactor("./sample.docx")asredactor:redactor.apply(ex_red)# Save the document with default options (rasterize to PDF and add suffix)save_options=SaveOptions()save_options.add_suffix=Truesave_options.rasterize_to_pdf=Truesave_options.redacted_file_suffix="redacted"result_path=redactor.save(save_options)print(f"Document redacted successfully. Check output in {result_path}.")