the Dataset Role
| Name | Type | Description | Notes |
|---|---|---|---|
| role | str | the Dataset Role |
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)