SystemMediaServerGetListRequest
Bases: OCIRequest
Request to get a list of Media Servers defined in the system. The response is either a SystemMediaServerGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMediaServerGetListRequest. The Media Server table column headings are: "Net Address", "Port", "Transport", "Description".
Attributes:
media_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 SystemMediaServerGetListRequest
client = Client()
command = SystemMediaServerGetListRequest()
response = client.command(command)
print(response)