Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.46 KB

File metadata and controls

34 lines (25 loc) · 1.46 KB

Ecosystemv3DatasetRecord

A dataset record indicates the dataset name and creation time.

Properties

Name Type Description Notes
creation_time datetime The time the dataset definition was created. [optional]
data_count int Row count on a dataset. [optional]
dataset_name str Dataset name, unique, "" for new records, required for update. [optional]
editable bool Can this data set schema be edited. [optional]
last_updated datetime The last time the data is updated. [optional]

Example

from ibm_gdsc_sdk_saas.models.ecosystemv3_dataset_record import Ecosystemv3DatasetRecord

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

# convert the object into a dict
ecosystemv3_dataset_record_dict = ecosystemv3_dataset_record_instance.to_dict()
# create an instance of Ecosystemv3DatasetRecord from a dict
ecosystemv3_dataset_record_from_dict = Ecosystemv3DatasetRecord.from_dict(ecosystemv3_dataset_record_dict)

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