Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.42 KB

File metadata and controls

34 lines (25 loc) · 1.42 KB

Ecosystemv3DatasetDetail

DatasetDetail provides the detail of the definition.

Properties

Name Type Description Notes
columns List[Ecosystemv3ColumnDefinition] Columns of the definition. [optional]
data_count int Row count on a dataset. [optional]
dataset_name str The name of the definition. [optional]
description str Description in detail. [optional]
editable bool Can this data set schema be edited. [optional]

Example

from ibm_gdsc_sdk_saas.models.ecosystemv3_dataset_detail import Ecosystemv3DatasetDetail

# TODO update the JSON string below
json = "{}"
# create an instance of Ecosystemv3DatasetDetail from a JSON string
ecosystemv3_dataset_detail_instance = Ecosystemv3DatasetDetail.from_json(json)
# print the JSON string representation of the object
print(Ecosystemv3DatasetDetail.to_json())

# convert the object into a dict
ecosystemv3_dataset_detail_dict = ecosystemv3_dataset_detail_instance.to_dict()
# create an instance of Ecosystemv3DatasetDetail from a dict
ecosystemv3_dataset_detail_from_dict = Ecosystemv3DatasetDetail.from_dict(ecosystemv3_dataset_detail_dict)

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