Skip to content

SearchString

Properties

Name Type Description Notes

Example

from deepsearch.cps.apis.public_v2.models.search_string import SearchString

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

# convert the object into a dict
search_string_dict = search_string_instance.to_dict()
# create an instance of SearchString from a dict
search_string_form_dict = search_string.from_dict(search_string_dict)
[Back to Model list] [Back to API list] [Back to README]