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