Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

UpdateTableRequest

Field-modeling update for a modeled table (PATCH).

Properties

Name Type Description Notes
description str [optional]
column_config List[ColumnConfig] [optional]

Example

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)

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