SystemExecutiveGetRequest24
Bases: OCIRequest
Request to get the Executive system parameters. The response is either SystemExecutiveGetResponse24 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemExecutiveGetRequest.
Attributes:
treat_virtual_on_net_calls_as_internal (bool):
consider_executive_on_hook_for_assistant_calls (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemExecutiveGetRequest24
client = Client()
command = SystemExecutiveGetRequest24()
response = client.command(command)
print(response)