diff --git a/pyatlan_v9/model/typedef.py b/pyatlan_v9/model/typedef.py index b903ad2a8..24d618401 100644 --- a/pyatlan_v9/model/typedef.py +++ b/pyatlan_v9/model/typedef.py @@ -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 @@ -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."""