Name | Type | Description | Notes |
---|---|---|---|
score | float | The score for this row | [optional] |
highlight | List[SearchEntryHighlightInner] | Highlight fragments if requested and available. A match can happen in any of the requested field. | [optional] |
from alfresco_search_api_client.models.search_entry import SearchEntry
# TODO update the JSON string below
json = "{}"
# create an instance of SearchEntry from a JSON string
search_entry_instance = SearchEntry.from_json(json)
# print the JSON string representation of the object
print SearchEntry.to_json()
# convert the object into a dict
search_entry_dict = search_entry_instance.to_dict()
# create an instance of SearchEntry from a dict
search_entry_form_dict = search_entry.from_dict(search_entry_dict)