Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyatlan_v9/model/typedef.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ def creator(
description: Union[str, None, msgspec.UnsetType] = msgspec.UNSET
"""Description of the attribute definition."""

default_value: Union[str, None, msgspec.UnsetType] = msgspec.UNSET
default_value: Union[Any, None, msgspec.UnsetType] = msgspec.UNSET
"""Default value for this attribute (if any)."""

display_name: Union[str, None, msgspec.UnsetType] = msgspec.UNSET
Expand Down Expand Up @@ -674,7 +674,7 @@ def creator(
)
"""Internal use only."""

index_type_es_fields: Union[Dict[str, Dict[str, str]], None, msgspec.UnsetType] = (
index_type_es_fields: Union[Dict[str, Dict[str, Any]], None, msgspec.UnsetType] = (
msgspec.field(default=msgspec.UNSET, name="indexTypeESFields")
)
"""Internal use only."""
Expand Down
Loading