Skip to content

ProjectDataIndexSource

Properties

Name Type Description Notes
index_key str
proj_key str

Example

from deepsearch.cps.apis.public_v2.models.project_data_index_source import ProjectDataIndexSource

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

# convert the object into a dict
project_data_index_source_dict = project_data_index_source_instance.to_dict()
# create an instance of ProjectDataIndexSource from a dict
project_data_index_source_form_dict = project_data_index_source.from_dict(project_data_index_source_dict)
[Back to Model list] [Back to API list] [Back to README]