Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

CatalogTableResponse

Properties

Name Type Description Notes
name str
schema_name str
columns List[CatalogColumnResponse]

Example

from ksapi.models.catalog_table_response import CatalogTableResponse

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

# convert the object into a dict
catalog_table_response_dict = catalog_table_response_instance.to_dict()
# create an instance of CatalogTableResponse from a dict
catalog_table_response_from_dict = CatalogTableResponse.from_dict(catalog_table_response_dict)

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