SystemThirdPartyEmergencyCallingGetRequest24
Bases: OCIRequest
Get the third-party emergency call service settings for the system. The response is either a SystemThirdPartyEmergencyCallingGetResponse24 or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemThirdPartyEmergencyCallingGetRequest24. The response contains the third-party emergency call service settings for the system.
Attributes:
primary_held_server_url (Optional[str]):
secondary_held_server_url (Optional[str]):
emergency_route_net_address (Optional[str]):
emergency_route_port (Optional[int]):
emergency_route_transport (Optional[str]):
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 SystemThirdPartyEmergencyCallingGetRequest24
client = Client()
command = SystemThirdPartyEmergencyCallingGetRequest24()
response = client.command(command)
print(response)