SystemXsiApplicationIdGetListRequest
Bases: OCIRequest
Get the system Xsi application Id white lists. The response is either SystemXsiApplicationIdGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemXsiApplicationIdGetListRequest Contains a table with column headings: "Xsi Application Id", "Description".
Attributes:
xsi_application_id_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 SystemXsiApplicationIdGetListRequest
client = Client()
command = SystemXsiApplicationIdGetListRequest()
response = client.command(command)
print(response)