SystemSMDIMessageDeskGetServerRouteListRequest
Bases: OCIRequest
Request to get a list of SMDI Servers routes in the system. The response is either a SystemSMDIMessageDeskGetServerRouteListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemSMDIMessageDeskGetServerRouteListRequest. The SMDI Server route table column headings are: "Destination" and "SMDI Servers".
Attributes:
smdi_server_route_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 SystemSMDIMessageDeskGetServerRouteListRequest
client = Client()
command = SystemSMDIMessageDeskGetServerRouteListRequest()
response = client.command(command)
print(response)