Skip to content

Abstract

Properties

Name Type Description Notes

Example

from deepsearch.cps.apis.public_v2.models.abstract import Abstract

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

# convert the object into a dict
abstract_dict = abstract_instance.to_dict()
# create an instance of Abstract from a dict
abstract_form_dict = abstract.from_dict(abstract_dict)
[Back to Model list] [Back to API list] [Back to README]