Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1023 Bytes

File metadata and controls

31 lines (22 loc) · 1023 Bytes

CatalogColumnResponse

Properties

Name Type Description Notes
name str
data_type str
is_pk bool

Example

from ksapi.models.catalog_column_response import CatalogColumnResponse

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

# convert the object into a dict
catalog_column_response_dict = catalog_column_response_instance.to_dict()
# create an instance of CatalogColumnResponse from a dict
catalog_column_response_from_dict = CatalogColumnResponse.from_dict(catalog_column_response_dict)

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