SystemCallReturnGetRequest
Bases: OCIRequest
Request the system level data associated with Call Return. The response is either a SystemCallReturnGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCallReturnGetRequest.
Attributes:
two_level_activation (bool):
provide_date (bool):
last_unanswered_call_only (bool):
confirmation_key (Optional[str]):
allow_restricted_number (bool):
delete_number_after_answered_call_return (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallReturnGetRequest
client = Client()
command = SystemCallReturnGetRequest()
response = client.command(command)
print(response)