Field-modeling update for a modeled table (PATCH).
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| column_config | List[ColumnConfig] | [optional] |
from ksapi.models.update_table_request import UpdateTableRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateTableRequest from a JSON string
update_table_request_instance = UpdateTableRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateTableRequest.to_json())
# convert the object into a dict
update_table_request_dict = update_table_request_instance.to_dict()
# create an instance of UpdateTableRequest from a dict
update_table_request_from_dict = UpdateTableRequest.from_dict(update_table_request_dict)