SystemGETSSessionPriorityMapGetListRequest
Bases: OCIRequest
Get a list of GETS Session Priority maps. The response is either SystemGETSSessionPriorityMapGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemGETSSessionPriorityMapGetListRequest. The table columns are: "Priority Level" and "Session Priority Value".
Attributes:
session_priority_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemGETSSessionPriorityMapGetListRequest
client = Client()
command = SystemGETSSessionPriorityMapGetListRequest()
response = client.command(command)
print(response)