Skip to content

Provenance

Properties

Name Type Description Notes

Example

from deepsearch.cps.apis.public_v2.models.provenance import Provenance

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

# convert the object into a dict
provenance_dict = provenance_instance.to_dict()
# create an instance of Provenance from a dict
provenance_form_dict = provenance.from_dict(provenance_dict)
[Back to Model list] [Back to API list] [Back to README]