Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.06 KB

SearchEntry.md

File metadata and controls

29 lines (21 loc) · 1.06 KB

SearchEntry

Properties

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]

Example

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)

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