Request body for POST /v1/datasets
| Name | Type | Description | Notes |
|---|---|---|---|
| label | str | ||
| source | DatasetSource | ||
| table_name | object | Optional table_name - if not provided, derived from label | [optional] |
from hotdata.models.create_dataset_request import CreateDatasetRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateDatasetRequest from a JSON string
create_dataset_request_instance = CreateDatasetRequest.from_json(json)
# print the JSON string representation of the object
print(CreateDatasetRequest.to_json())
# convert the object into a dict
create_dataset_request_dict = create_dataset_request_instance.to_dict()
# create an instance of CreateDatasetRequest from a dict
create_dataset_request_from_dict = CreateDatasetRequest.from_dict(create_dataset_request_dict)