the dataset security information
| Name | Type | Description | Notes |
|---|---|---|---|
| default | str | the role by default | |
| access_control_list | List[DatasetAccessControl] | the list which can access this Dataset with detailed access control information |
from cosmotech_api.models.dataset_security import DatasetSecurity
# TODO update the JSON string below
json = "{}"
# create an instance of DatasetSecurity from a JSON string
dataset_security_instance = DatasetSecurity.from_json(json)
# print the JSON string representation of the object
print(DatasetSecurity.to_json())
# convert the object into a dict
dataset_security_dict = dataset_security_instance.to_dict()
# create an instance of DatasetSecurity from a dict
dataset_security_from_dict = DatasetSecurity.from_dict(dataset_security_dict)