Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

DataSourceDetailResponse

A connector plus the schemas (and their readable tables) the caller sees.

Properties

Name Type Description Notes
data_source DataSourceResponse
schemas List[DataSourceSchemaResponse]

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]