Parameters for toggling the MCP server status.
| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | bool | Set to true to enable the server (making it available for room assignment), or false to disable it. | [optional] |
from docspace_api_sdk.models.set_server_status_request_body import SetServerStatusRequestBody
# TODO update the JSON string below
json = "{}"
# create an instance of SetServerStatusRequestBody from a JSON string
set_server_status_request_body_instance = SetServerStatusRequestBody.from_json(json)
# print the JSON string representation of the object
print(SetServerStatusRequestBody.to_json())
# convert the object into a dict
set_server_status_request_body_dict = set_server_status_request_body_instance.to_dict()
# create an instance of SetServerStatusRequestBody from a dict
set_server_status_request_body_from_dict = SetServerStatusRequestBody.from_dict(set_server_status_request_body_dict)