SystemSMDIParametersGetRequest
Bases: OCIRequest
Request to get the list of SMDI system parameters. The response is either SystemSMDIParametersGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemSMDIParametersGetListRequest. Contains a list of system SMDI parameters.
Attributes:
enable_smdi (bool):
listening_port (int):
max_connections (int):
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 SystemSMDIParametersGetRequest
client = Client()
command = SystemSMDIParametersGetRequest()
response = client.command(command)
print(response)