JsonExportFormat
Specifies formatting options for JSON export.
from nutrient import JsonExportFormatValues
| Name | Value | Description |
|---|---|---|
JsonExportFormat.UNSPECIFIED | 0 | No specific formatting options. |
JsonExportFormat.PRETTY_PRINT | 1 | Format the JSON output with indentation for readability. |
Usage Example
from nutrient import JsonExportFormat
# Access enum valuesvalue = JsonExportFormat.UNSPECIFIEDprint(f"Value: {value}") # Output: Value: JsonExportFormat.UNSPECIFIEDprint(f"Integer value: {value.value}") # Output: Integer value: 0