| Name | Type | Description | Notes |
|---|---|---|---|
| auto_shutoff | List[str] | List of available auto-shutoff settings. | [readonly] |
| disk_space | List[DiskSpaceOption] | Available disk space sizes. | [readonly] |
| size | List[InstanceSize] | List of available instance sizes. | [readonly] |
from saturn_api.models.workspace_server_options import WorkspaceServerOptions
# TODO update the JSON string below
json = "{}"
# create an instance of WorkspaceServerOptions from a JSON string
workspace_server_options_instance = WorkspaceServerOptions.from_json(json)
# print the JSON string representation of the object
print(WorkspaceServerOptions.to_json())
# convert the object into a dict
workspace_server_options_dict = workspace_server_options_instance.to_dict()
# create an instance of WorkspaceServerOptions from a dict
workspace_server_options_from_dict = WorkspaceServerOptions.from_dict(workspace_server_options_dict)