Request body for PUT /v1/datasets/{id}
| Name | Type | Description | Notes |
|---|---|---|---|
| label | str | [optional] | |
| table_name | str | [optional] |
from hotdata.models.update_dataset_request import UpdateDatasetRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateDatasetRequest from a JSON string
update_dataset_request_instance = UpdateDatasetRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateDatasetRequest.to_json())
# convert the object into a dict
update_dataset_request_dict = update_dataset_request_instance.to_dict()
# create an instance of UpdateDatasetRequest from a dict
update_dataset_request_from_dict = UpdateDatasetRequest.from_dict(update_dataset_request_dict)