Specifies formatting options for JSON export.

from nutrient import JsonExportFormat

Values

NameValueDescription
JsonExportFormat.UNSPECIFIED0No specific formatting options.
JsonExportFormat.PRETTY_PRINT1Format the JSON output with indentation for readability.

Usage Example

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