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