Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.46 KB

File metadata and controls

41 lines (32 loc) · 1.46 KB

ConnectionResponse

Properties

Name Type Description Notes
source_instance_id str
generator_instance_id str
destination_instance_id str
workspace_id str
name str
namespace_format str [optional] [default to '${SOURCE_NAMESPACE}']
prefix str [optional]
configuration object [optional]
catalog DatCatalogOutput [optional]
schedule Schedule [optional]
schedule_type str [optional]
status str [optional]
id str

Example

from dat_client.models.connection_response import ConnectionResponse

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

# convert the object into a dict
connection_response_dict = connection_response_instance.to_dict()
# create an instance of ConnectionResponse from a dict
connection_response_form_dict = connection_response.from_dict(connection_response_dict)

[Back to Model list] [Back to API list] [Back to README]