A Workspace
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Workspace unique identifier generated by the API | [readonly] |
| organization_id | str | Organization unique identifier under which the workspace resides | [readonly] |
| key | str | Technical key for resource name convention and version grouping. Must be unique | |
| name | str | Workspace name. This name is display in the sample webApp | |
| description | str | The Workspace description | [optional] |
| version | str | The Workspace version MAJOR.MINOR.PATCH. | [optional] |
| tags | List[str] | The list of tags | [optional] |
| create_info | WorkspaceEditInfo | The details of the Workspace creation | |
| update_info | WorkspaceEditInfo | The details of the Workspace last update | |
| solution | WorkspaceSolution | ||
| additional_data | Dict[str, object] | Free form additional data | [optional] |
| security | WorkspaceSecurity |
from cosmotech_api.models.workspace import Workspace
# TODO update the JSON string below
json = "{}"
# create an instance of Workspace from a JSON string
workspace_instance = Workspace.from_json(json)
# print the JSON string representation of the object
print(Workspace.to_json())
# convert the object into a dict
workspace_dict = workspace_instance.to_dict()
# create an instance of Workspace from a dict
workspace_from_dict = Workspace.from_dict(workspace_dict)