UserCollaborateInstantRoomParametersGetRequest
Bases: OCIRequest
Request collaborate instant room settings. The response is either UserCollaborateInstantRoomParametersGetResponse or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserCollaborateInstantRoomParametersGetRequest.
Attributes:
attendee_notification (str):
end_collaborate_room_session_on_owner_exit (bool):
owner_required (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserCollaborateInstantRoomParametersGetRequest
client = Client()
command = UserCollaborateInstantRoomParametersGetRequest(
user_id=...,
)
response = client.command(command)
print(response)