Name | Type | Description | Notes |
---|---|---|---|
var_resource_path | str | [optional] | |
id | int | [optional] | |
name | str | [optional] | |
created_at | datetime | [optional] | |
created_by | str | [optional] | |
updated_at | datetime | [optional] | |
status | str | Dataset status | [optional] |
status_info | Dict[str, str] | [optional] | |
get_url | str | [optional] | |
data_schema | List[ColumnSchema] | [optional] | |
stats | Stats | [optional] | |
sources | List[DsInfoSourcesInner] | [optional] | |
display_info | DisplayInfo | [optional] | |
data_url | str | [optional] | |
dependencies | object | [optional] | |
batch_ids | List[int] | [optional] |
from openapi_client.models.ds_info import DsInfo
# TODO update the JSON string below
json = "{}"
# create an instance of DsInfo from a JSON string
ds_info_instance = DsInfo.from_json(json)
# print the JSON string representation of the object
print(DsInfo.to_json())
# convert the object into a dict
ds_info_dict = ds_info_instance.to_dict()
# create an instance of DsInfo from a dict
ds_info_from_dict = DsInfo.from_dict(ds_info_dict)