SystemNotificationOfReachabilityParametersGetRequest
Bases: OCIRequest
Request to get the system Notification of Reachability parameters. The response is either SystemNotificationOfReachabilityParametersGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemNotificationOfReachabilityParametersGetRequest. Contains the system Notification of Reachability parameters.
Attributes:
enable_no_r (bool):
always_send_third_party_v_mfor_unreachable (bool):
disable_fa_cfor_third_party_voice_mail (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemNotificationOfReachabilityParametersGetRequest
client = Client()
command = SystemNotificationOfReachabilityParametersGetRequest()
response = client.command(command)
print(response)