JsonExportContent
Specifies which content elements to include in JSON export.
from nutrient import JsonExportContentValues
| Name | Value | Description |
|---|---|---|
JsonExportContent.UNSPECIFIED | 0 | No specific content options. |
JsonExportContent.INCLUDE_WORDS | 1 | Include word-level details with coordinates in the export. |
Usage Example
from nutrient import JsonExportContent
# Access enum valuesvalue = JsonExportContent.UNSPECIFIEDprint(f"Value: {value}") # Output: Value: JsonExportContent.UNSPECIFIEDprint(f"Integer value: {value.value}") # Output: Integer value: 0