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

Specifies formatting options for JSON export.

from nutrient_sdk import JsonExportFormat

Values

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

Usage Example

from nutrient_sdk 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