Skip to content

Term

Properties

Name Type Description Notes

Example

from deepsearch.cps.apis.public_v2.models.term import Term

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

# convert the object into a dict
term_dict = term_instance.to_dict()
# create an instance of Term from a dict
term_form_dict = term.from_dict(term_dict)
[Back to Model list] [Back to API list] [Back to README]