Skip to content

ProjectDataIndexNonView

Properties

Name Type Description Notes
name str
description str [optional]
schema_key str [optional] [default to 'generic']

Example

from deepsearch.cps.apis.public_v2.models.project_data_index_non_view import ProjectDataIndexNonView

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

# convert the object into a dict
project_data_index_non_view_dict = project_data_index_non_view_instance.to_dict()
# create an instance of ProjectDataIndexNonView from a dict
project_data_index_non_view_form_dict = project_data_index_non_view.from_dict(project_data_index_non_view_dict)
[Back to Model list] [Back to API list] [Back to README]