adobe.pdfservices.operation.pdfops.options.autotagpdf package

Submodules

adobe.pdfservices.operation.pdfops.options.autotagpdf.autotag_pdf_options module

class adobe.pdfservices.operation.pdfops.options.autotagpdf.autotag_pdf_options.AutotagPDFOptions(generate_report, shift_headings)

Bases: object

An Options Class that defines the options for AutotagPDFOperation.

autotag_pdf_options: AutotagPDFOptions = AutotagPDFOptions.builder() \
    .generate_report() \
    .shift_headings() \
    .build()
class Builder

Bases: object

The builder for AutotagPDFOptions.

build()

builds and returns the AutotagPDFOptions instance

with_generate_report()

sets the Boolean specifying whether to generate an XLSX report containing the information about the tags

Returns:

This Builder instance to add any additional parameters.

Return type:

AutotagPDFOptions.Builder

with_shift_headings()

sets the Boolean specifying whether to shift headings in the output PDF file

Returns:

This Builder instance to add any additional parameters.

Return type:

AutotagPDFOptions.Builder

static builder()

Returns a Builder for AutotagPDFOptions

Returns:

The builder class for AutotagPDFOptions

Return type:

AutotagPDFOptions.Builder

property generate_report

Boolean specifying whether to generate an XLSX report as an output

property shift_headings

Boolean specifying whether to shift the headings in the output PDF file

Module contents