Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 968 Bytes

EntityMatch.md

File metadata and controls

31 lines (22 loc) · 968 Bytes

EntityMatch

Entity Match

Properties

Name Type Description Notes
confidence float Confidence score for the current entity. [optional]
entity_id str The entity URI. [optional]

Example

from wordlift_client.models.entity_match import EntityMatch

# TODO update the JSON string below
json = "{}"
# create an instance of EntityMatch from a JSON string
entity_match_instance = EntityMatch.from_json(json)
# print the JSON string representation of the object
print(EntityMatch.to_json())

# convert the object into a dict
entity_match_dict = entity_match_instance.to_dict()
# create an instance of EntityMatch from a dict
entity_match_from_dict = EntityMatch.from_dict(entity_match_dict)

[Back to Model list] [Back to API list] [Back to README]