Skip to content

DataFlow

Properties

Name Type Description Notes
df_tpl_key str
name str

Example

from deepsearch.cps.apis.public_v2.models.data_flow import DataFlow

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

# convert the object into a dict
data_flow_dict = data_flow_instance.to_dict()
# create an instance of DataFlow from a dict
data_flow_form_dict = data_flow.from_dict(data_flow_dict)
[Back to Model list] [Back to API list] [Back to README]