Live introspection of the external DB (pick tables to model from here).
| Name | Type | Description | Notes |
|---|---|---|---|
| tables | List[CatalogTableResponse] |
from ksapi.models.data_source_catalog_response import DataSourceCatalogResponse
# TODO update the JSON string below
json = "{}"
# create an instance of DataSourceCatalogResponse from a JSON string
data_source_catalog_response_instance = DataSourceCatalogResponse.from_json(json)
# print the JSON string representation of the object
print(DataSourceCatalogResponse.to_json())
# convert the object into a dict
data_source_catalog_response_dict = data_source_catalog_response_instance.to_dict()
# create an instance of DataSourceCatalogResponse from a dict
data_source_catalog_response_from_dict = DataSourceCatalogResponse.from_dict(data_source_catalog_response_dict)