| Name | Type | Description | Notes |
|---|---|---|---|
| auto_shutoff | List[str] | List of available auto-shutoff settings for workspaces. | [readonly] |
| disk_space | List[str] | List of available disk sizes for workspaces. | [readonly] |
| sizes | Dict[str, InstanceSize] | Mapping of instance size names to their configurations. | [readonly] |
from saturn_api.models.server_options import ServerOptions
# TODO update the JSON string below
json = "{}"
# create an instance of ServerOptions from a JSON string
server_options_instance = ServerOptions.from_json(json)
# print the JSON string representation of the object
print(ServerOptions.to_json())
# convert the object into a dict
server_options_dict = server_options_instance.to_dict()
# create an instance of ServerOptions from a dict
server_options_from_dict = ServerOptions.from_dict(server_options_dict)