| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the shared folder. | |
| owner | OwnerReference | Owner of the shared folder. | [optional] |
| access | SharedFolderAccessLevel | [optional] | |
| access_mode | SharedAccessMode | [optional] | |
| is_external | bool | True if the shared folder is externally managed. | [optional] [default to False] |
from saturn_api.models.shared_folder_create import SharedFolderCreate
# TODO update the JSON string below
json = "{}"
# create an instance of SharedFolderCreate from a JSON string
shared_folder_create_instance = SharedFolderCreate.from_json(json)
# print the JSON string representation of the object
print(SharedFolderCreate.to_json())
# convert the object into a dict
shared_folder_create_dict = shared_folder_create_instance.to_dict()
# create an instance of SharedFolderCreate from a dict
shared_folder_create_from_dict = SharedFolderCreate.from_dict(shared_folder_create_dict)