This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /api/python/enums/json-export-content.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. JsonExportContent

Specifies which content elements to include in JSON export.

from nutrient_sdk import JsonExportContent

Values

NameValueDescription
JsonExportContent.UNSPECIFIED0No specific content options.
JsonExportContent.INCLUDE_WORDS1Include word-level details with coordinates in the export.

Usage Example

from nutrient_sdk import JsonExportContent
# Access enum values
value = JsonExportContent.UNSPECIFIED
print(f"Value: {value}") # Output: Value: JsonExportContent.UNSPECIFIED
print(f"Integer value: {value.value}") # Output: Integer value: 0