SystemCallNotifyGetRequest
Bases: OCIRequest
Request the system level data associated with Call Notify. The response is either a SystemCallNotifyGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCallNotifyGetRequest.
Attributes:
default_from_address (str):
use_short_subject_line (bool):
use_dn_in_mail_body (bool):
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 SystemCallNotifyGetRequest
client = Client()
command = SystemCallNotifyGetRequest()
response = client.command(command)
print(response)