Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
name | str | [optional] | |
ds_id | int | [optional] | |
display_properties | DisplayPropertiesResponse | ||
user_display_properties | Dict[str, object] | [optional] | |
data_url | str | [optional] | |
metadata | List[object] | [optional] | |
sys_cols | List[Dict[str, object]] | [optional] | |
status | str | [optional] | |
pipeline_status | str | Pipeline Status | [optional] |
is_pipeline_running | bool | [optional] | |
draft_mode | str | Draft Mode Status | [optional] |
row_count | int | [optional] | |
column_count | int | [optional] | |
pipeline_autorun_enabled | bool | [optional] | |
is_dataview_data_in_sync | bool | [optional] | |
taskwise_info | Dict[str, Dict[str, object]] | [optional] | |
original_data_updated | bool | [optional] | |
dependencies_info | Dict[str, object] | [optional] | |
created_at | DataviewInfoCreatedAt | [optional] | |
updated_at | DataviewInfoUpdatedAt | [optional] | |
data_updated_at | DataviewInfoDataUpdatedAt | [optional] |
from openapi_client.models.dataview_info import DataviewInfo
# TODO update the JSON string below
json = "{}"
# create an instance of DataviewInfo from a JSON string
dataview_info_instance = DataviewInfo.from_json(json)
# print the JSON string representation of the object
print(DataviewInfo.to_json())
# convert the object into a dict
dataview_info_dict = dataview_info_instance.to_dict()
# create an instance of DataviewInfo from a dict
dataview_info_from_dict = DataviewInfo.from_dict(dataview_info_dict)