Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 871 Bytes

File metadata and controls

30 lines (21 loc) · 871 Bytes

DatasetRole

the Dataset Role

Properties

Name Type Description Notes
role str the Dataset Role

Example

from cosmotech_api.models.dataset_role import DatasetRole

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

# convert the object into a dict
dataset_role_dict = dataset_role_instance.to_dict()
# create an instance of DatasetRole from a dict
dataset_role_from_dict = DatasetRole.from_dict(dataset_role_dict)

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