Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.19 KB

File metadata and controls

37 lines (28 loc) · 1.19 KB

GetDatasetResponse

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

Properties

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

Example

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)

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