Skip to content

ProjectDocuments

Properties

Name Type Description Notes
documents List[ProjectDocument]

Example

from deepsearch.cps.apis.public_v2.models.project_documents import ProjectDocuments

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

# convert the object into a dict
project_documents_dict = project_documents_instance.to_dict()
# create an instance of ProjectDocuments from a dict
project_documents_form_dict = project_documents.from_dict(project_documents_dict)
[Back to Model list] [Back to API list] [Back to README]