Entity
| Name | Type | Description | Notes |
|---|---|---|---|
| entity_id | str | The entity URI. | [optional] |
| confidence | float | Confidence score representing the entity match level. | [optional] |
| main_type | str | The main schema type for the current entity. | [optional] |
| types | List[str] | The list of schema types which the entity can be classified to. | [optional] |
| label | str | The title of the entity. | [optional] |
| description | str | The description about the entity. | [optional] |
| images | List[str] | The list of entity image URIs. | [optional] |
| same_as | List[str] | The list of entity sameas URIs. | [optional] |
| properties | Properties1 | [optional] | |
| synonyms | List[str] | [optional] |
from wordlift_client.models.entity1 import Entity1
# TODO update the JSON string below
json = "{}"
# create an instance of Entity1 from a JSON string
entity1_instance = Entity1.from_json(json)
# print the JSON string representation of the object
print(Entity1.to_json())
# convert the object into a dict
entity1_dict = entity1_instance.to_dict()
# create an instance of Entity1 from a dict
entity1_from_dict = Entity1.from_dict(entity1_dict)