Skip to content

SemanticIngestSourcePrivateDataDocument

Properties

Name Type Description Notes
type str
proj_key str
index_key str
document_hash str

Example

from deepsearch.cps.apis.public_v2.models.semantic_ingest_source_private_data_document import SemanticIngestSourcePrivateDataDocument

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

# convert the object into a dict
semantic_ingest_source_private_data_document_dict = semantic_ingest_source_private_data_document_instance.to_dict()
# create an instance of SemanticIngestSourcePrivateDataDocument from a dict
semantic_ingest_source_private_data_document_form_dict = semantic_ingest_source_private_data_document.from_dict(semantic_ingest_source_private_data_document_dict)
[Back to Model list] [Back to API list] [Back to README]