SystemVideoServerParametersGetRequest
Bases: OCIRequest
Request to get the list of video server system parameters. The response is either SystemVideoServerParametersGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemVideoServerParametersGetRequest. Contains a list of system video server parameters.
Attributes:
video_server_response_timer_milliseconds (int):
video_server_selection_route_timer_milliseconds (int):
use_static_video_server_device (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemVideoServerParametersGetRequest
client = Client()
command = SystemVideoServerParametersGetRequest()
response = client.command(command)
print(response)