SystemCollaborateModifyRequest20sp1V2
Bases: OCIRequest
Modify the system level data associated with collaborate services. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
collaborate_room_id_length (Optional[int]):
instant_room_idle_timeout_seconds (Optional[int]):
collaborate_room_maximum_duration_minutes (Optional[int]):
support_outdial (Optional[bool]):
max_collaborate_room_participants (Optional[int]):
collaborate_active_talker_refresh_interval_seconds (Optional[int]):
terminate_collaborate_after_grace_period (Optional[bool]):
collaborate_grace_period (Optional[CollaborateGracePeriodDuration]):
enable_active_collaborate_notification (Optional[bool]):
collaborate_from_address (Optional[Nillable[str]]):
Source code in src/mercury_ocip_fast/commands/commands.py
82132 82133 82134 82135 82136 82137 82138 82139 82140 82141 82142 82143 82144 82145 82146 82147 82148 82149 82150 82151 82152 82153 82154 82155 82156 82157 82158 82159 82160 82161 82162 82163 82164 82165 82166 82167 82168 82169 82170 82171 82172 82173 82174 82175 82176 82177 82178 82179 82180 82181 82182 82183 82184 82185 82186 82187 82188 82189 82190 82191 82192 82193 82194 82195 82196 82197 82198 82199 82200 82201 82202 82203 82204 82205 82206 82207 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemCollaborateModifyRequest20sp1V2
client = Client()
command = SystemCollaborateModifyRequest20sp1V2(
collaborate_room_id_length=...,
instant_room_idle_timeout_seconds=...,
collaborate_room_maximum_duration_minutes=...,
support_outdial=...,
max_collaborate_room_participants=...,
collaborate_active_talker_refresh_interval_seconds=...,
terminate_collaborate_after_grace_period=...,
collaborate_grace_period=...,
enable_active_collaborate_notification=...,
collaborate_from_address=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("SystemCollaborateModifyRequest20sp1V2",
collaborate_room_id_length=...,
instant_room_idle_timeout_seconds=...,
collaborate_room_maximum_duration_minutes=...,
support_outdial=...,
max_collaborate_room_participants=...,
collaborate_active_talker_refresh_interval_seconds=...,
terminate_collaborate_after_grace_period=...,
collaborate_grace_period=...,
enable_active_collaborate_notification=...,
collaborate_from_address=...,
)
print(response)