The list of entities matching the query.
| Name | Type | Description | Notes |
|---|---|---|---|
| reference | str | The referenced entity URI | [optional] |
| properties | LongTailProperties | [optional] |
from wordlift_client.models.long_tail_entity import LongTailEntity
# TODO update the JSON string below
json = "{}"
# create an instance of LongTailEntity from a JSON string
long_tail_entity_instance = LongTailEntity.from_json(json)
# print the JSON string representation of the object
print(LongTailEntity.to_json())
# convert the object into a dict
long_tail_entity_dict = long_tail_entity_instance.to_dict()
# create an instance of LongTailEntity from a dict
long_tail_entity_from_dict = LongTailEntity.from_dict(long_tail_entity_dict)