| Name | Type | Description | Notes |
|---|---|---|---|
| hashtags | List[Dict[str, object]] | ||
| media | List[Media] | [optional] | |
| symbols | List[Dict[str, object]] | ||
| timestamps | List[Timestamp] | [optional] | |
| urls | List[Url] | ||
| user_mentions | List[Dict[str, object]] |
from twitter_openapi_python_generated.models.entities import Entities
# TODO update the JSON string below
json = "{}"
# create an instance of Entities from a JSON string
entities_instance = Entities.from_json(json)
# print the JSON string representation of the object
print(Entities.to_json())
# convert the object into a dict
entities_dict = entities_instance.to_dict()
# create an instance of Entities from a dict
entities_from_dict = Entities.from_dict(entities_dict)