Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

DataSourceDetailResponse

A connector plus the modeled tables the caller can read (describe).

Properties

Name Type Description Notes
data_source DataSourceResponse
tables List[DataSourceTableResponse]

Example

from ksapi.models.data_source_detail_response import DataSourceDetailResponse

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

# convert the object into a dict
data_source_detail_response_dict = data_source_detail_response_instance.to_dict()
# create an instance of DataSourceDetailResponse from a dict
data_source_detail_response_from_dict = DataSourceDetailResponse.from_dict(data_source_detail_response_dict)

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