Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.1 KB

File metadata and controls

34 lines (25 loc) · 1.1 KB

CreateDatasetResponse

Response body for POST /v1/datasets

Properties

Name Type Description Notes
created_at datetime
id str
label str
status str
table_name str

Example

from hotdata.models.create_dataset_response import CreateDatasetResponse

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

# convert the object into a dict
create_dataset_response_dict = create_dataset_response_instance.to_dict()
# create an instance of CreateDatasetResponse from a dict
create_dataset_response_from_dict = CreateDatasetResponse.from_dict(create_dataset_response_dict)

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