Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.1 KB

File metadata and controls

35 lines (26 loc) · 1.1 KB

V1SearchHit

Generic search hit; fields vary by index

Properties

Name Type Description Notes
title str The controller for managing Search integration. [optional]
url str [optional]
summary str [optional]
content str [optional]
image str [optional]
object_id str [optional]

Example

from quantcdn.models.v1_search_hit import V1SearchHit

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

# convert the object into a dict
v1_search_hit_dict = v1_search_hit_instance.to_dict()
# create an instance of V1SearchHit from a dict
v1_search_hit_from_dict = V1SearchHit.from_dict(v1_search_hit_dict)

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