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)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)The height of the page in points.FileContentsPagesItem._FinalStagepageWidth(java.lang.Double pageWidth)FileContentsPagesItem._FinalStagepageWidth(java.util.Optional<java.lang.Double> pageWidth)The width of the page in points.
-
-
-
Method Detail
-
build
FileContentsPagesItem build()
-
pageHeight
FileContentsPagesItem._FinalStage pageHeight(java.util.Optional<java.lang.Double> pageHeight)
The height of the page in points. Available for PDF and IMG file types.
-
pageHeight
FileContentsPagesItem._FinalStage pageHeight(java.lang.Double pageHeight)
-
pageWidth
FileContentsPagesItem._FinalStage pageWidth(java.util.Optional<java.lang.Double> pageWidth)
The width of the page in points. Available for PDF and IMG file types.
-
pageWidth
FileContentsPagesItem._FinalStage pageWidth(java.lang.Double pageWidth)
-
markdown
FileContentsPagesItem._FinalStage markdown(java.util.Optional<java.lang.String> markdown)
Cleaned and structured markdown content of this page. Available for PDF and IMG file types when the
markdownquery parameter is set to true.
-
markdown
FileContentsPagesItem._FinalStage markdown(java.lang.String markdown)
-
html
FileContentsPagesItem._FinalStage html(java.util.Optional<java.lang.String> html)
HTML content of the page. Available for DOCX file types when the
htmlquery parameter is set to true.
-
html
FileContentsPagesItem._FinalStage html(java.lang.String html)
-
-