DocumentHashes¶
List of document hashes to be used as filter.
Properties¶
Name | Type | Description | Notes |
---|---|---|---|
Example¶
from deepsearch.cps.apis.public_v2.models.document_hashes import DocumentHashes
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentHashes from a JSON string
document_hashes_instance = DocumentHashes.from_json(json)
# print the JSON string representation of the object
print(DocumentHashes.to_json())
# convert the object into a dict
document_hashes_dict = document_hashes_instance.to_dict()
# create an instance of DocumentHashes from a dict
document_hashes_form_dict = document_hashes.from_dict(document_hashes_dict)