SystemVideoServerGetListRequest
Bases: OCIRequest
Request to get a list of video servers defined in the system. The response is either a SystemVideoServerGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemVideoServerGetListRequest. The Video Server table column headings are: "Net Address", "Port", "Transport", "Description". Transport types: udp, tcp, unspecified
Attributes:
video_server_table (OCITable):
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 SystemVideoServerGetListRequest
client = Client()
command = SystemVideoServerGetListRequest()
response = client.command(command)
print(response)