Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 909 Bytes

File metadata and controls

29 lines (20 loc) · 909 Bytes

HighlightFields

List of fields available for highlighting

Properties

Name Type Description Notes

Example

from manticoresearch.models.highlight_fields import HighlightFields

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

# convert the object into a dict
highlight_fields_dict = highlight_fields_instance.to_dict()
# create an instance of HighlightFields from a dict
highlight_fields_from_dict = HighlightFields.from_dict(highlight_fields_dict)

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