Skip to content

Source

Properties

Name Type Description Notes
index_key object
elastic_id object
proj_key object

Example

from deepsearch.cps.apis.public_v2.models.source import Source

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

# convert the object into a dict
source_dict = source_instance.to_dict()
# create an instance of Source from a dict
source_form_dict = source.from_dict(source_dict)
[Back to Model list] [Back to API list] [Back to README]