How do I set the "Import fills as" from code?

Can the ImportFillsAs option be set from Python when importing a PDF?

If this is not currently supported, could that option be exposed in the Import command?

I tried using RhinoDoc.Import, but there is no documentation about to use ArchivableDictionary options.

https://developer.rhino3d.com/api/rhinocommon/rhino.fileio.filepdfreadoptions/importfillsashatches

Thank you, this worked:

options = FilePdfReadOptions()
options.PreserveModelScale = True
options.PDFScale = 1.0
options.PdfUnits = FilePdfReadOptions.PDF_UNITS.inches
options.RhinoScale = 1.0
options.LoadText = True
options.ImportFillsAsHatches = True
doc.Import(page_pdf_path, options.ToDictionary())