Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.07 KB

File metadata and controls

33 lines (24 loc) · 1.07 KB

UpdateDatasetResponse

Response body for PUT /v1/datasets/{id}

Properties

Name Type Description Notes
id str
label str
table_name str
updated_at datetime

Example

from hotdata.models.update_dataset_response import UpdateDatasetResponse

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

# convert the object into a dict
update_dataset_response_dict = update_dataset_response_instance.to_dict()
# create an instance of UpdateDatasetResponse from a dict
update_dataset_response_from_dict = UpdateDatasetResponse.from_dict(update_dataset_response_dict)

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