PDF-related options for importing an entry.

interface IImportEntryRequestPdfOptions {
    generatePages?: boolean;
    generatePagesImageType?: GeneratePagesImageType;
    generateText?: boolean;
    keepPdfAfterImport?: boolean;
}

Implemented by

Properties

generatePages?: boolean

Indicates if the import operation should generate image pages. The default value is false.

generatePagesImageType?: GeneratePagesImageType

The image type used when generating image pages. The default value is StandardColor. This option is only applicable when GeneratePages is true.

generateText?: boolean

Indicates if the import operation should generate text. The default value is false.

keepPdfAfterImport?: boolean

Indicates if the PDF file should be retained as an electronic document after generating image pages. The default value is true. This option is only applicable when GeneratePages is true.