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

Specifies the annotation appearance theme used when importing Instant JSON.

from nutrient_sdk import InstantJsonRenderTheme

Values

NameValueDescription
InstantJsonRenderTheme.DEFAULT0Use the default annotation appearance generation.
InstantJsonRenderTheme.CORE1Use annotation appearance generation that matches the Core SDK.

Usage Example

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