Response body for GET /v1/datasets/{id}
| Name | Type | Description | Notes |
|---|---|---|---|
| columns | List[ColumnInfo] | ||
| created_at | datetime | ||
| id | str | ||
| label | str | ||
| schema_name | str | ||
| source_type | str | ||
| table_name | str | ||
| updated_at | datetime |
from hotdata.models.get_dataset_response import GetDatasetResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetDatasetResponse from a JSON string
get_dataset_response_instance = GetDatasetResponse.from_json(json)
# print the JSON string representation of the object
print(GetDatasetResponse.to_json())
# convert the object into a dict
get_dataset_response_dict = get_dataset_response_instance.to_dict()
# create an instance of GetDatasetResponse from a dict
get_dataset_response_from_dict = GetDatasetResponse.from_dict(get_dataset_response_dict)