Package ai.extend.types
Interface FileContentsPagesItem._FinalStage
-
- All Known Implementing Classes:
FileContentsPagesItem.Builder
- Enclosing class:
- FileContentsPagesItem
public static interface FileContentsPagesItem._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileContentsPagesItembuild()FileContentsPagesItem._FinalStagehtml(java.lang.String html)FileContentsPagesItem._FinalStagehtml(java.util.Optional<java.lang.String> html)Cleaned and structured html content of the page.FileContentsPagesItem._FinalStagemarkdown(java.lang.String markdown)FileContentsPagesItem._FinalStagemarkdown(java.util.Optional<java.lang.String> markdown)Cleaned and structured markdown content of this page.FileContentsPagesItem._FinalStagepageHeight(java.lang.Double pageHeight)FileContentsPagesItem._FinalStagepageHeight(java.util.Optional<java.lang.Double> pageHeight)FileContentsPagesItem._FinalStagepageWidth(java.lang.Double pageWidth)FileContentsPagesItem._FinalStagepageWidth(java.util.Optional<java.lang.Double> pageWidth)FileContentsPagesItem._FinalStagerawText(java.lang.String rawText)FileContentsPagesItem._FinalStagerawText(java.util.Optional<java.lang.String> rawText)The raw text content extracted from this page.
-
-
-
Method Detail
-
build
FileContentsPagesItem build()
-
pageHeight
FileContentsPagesItem._FinalStage pageHeight(java.util.Optional<java.lang.Double> pageHeight)
-
pageHeight
FileContentsPagesItem._FinalStage pageHeight(java.lang.Double pageHeight)
-
pageWidth
FileContentsPagesItem._FinalStage pageWidth(java.util.Optional<java.lang.Double> pageWidth)
-
pageWidth
FileContentsPagesItem._FinalStage pageWidth(java.lang.Double pageWidth)
-
rawText
FileContentsPagesItem._FinalStage rawText(java.util.Optional<java.lang.String> rawText)
The raw text content extracted from this page.
-
rawText
FileContentsPagesItem._FinalStage rawText(java.lang.String rawText)
-
markdown
FileContentsPagesItem._FinalStage markdown(java.util.Optional<java.lang.String> markdown)
Cleaned and structured markdown content of this page.
-
markdown
FileContentsPagesItem._FinalStage markdown(java.lang.String markdown)
-
html
FileContentsPagesItem._FinalStage html(java.util.Optional<java.lang.String> html)
Cleaned and structured html content of the page. Available for DOCX file types (that were not auto-converted to PDFs). Only included if the
htmlquery parameter is set to true in the endpoint request.
-
html
FileContentsPagesItem._FinalStage html(java.lang.String html)
-
-