The Workspace Role
| Name | Type | Description | Notes |
|---|---|---|---|
| role | str | The Workspace Role |
from cosmotech_api.models.workspace_role import WorkspaceRole
# TODO update the JSON string below
json = "{}"
# create an instance of WorkspaceRole from a JSON string
workspace_role_instance = WorkspaceRole.from_json(json)
# print the JSON string representation of the object
print(WorkspaceRole.to_json())
# convert the object into a dict
workspace_role_dict = workspace_role_instance.to_dict()
# create an instance of WorkspaceRole from a dict
workspace_role_from_dict = WorkspaceRole.from_dict(workspace_role_dict)