ServiceProviderEmergencyCallNotificationGetRequest
Bases: OCIRequest
Request the service provider level data associated with Emergency Call Notification. The response is either a ServiceProviderEmergencyCallNotificationGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderEmergencyCallNotificationGetRequest.
Attributes:
send_emergency_call_notification_email (bool):
emergency_call_notify_email_address (Optional[str]):
allow_group_override (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderEmergencyCallNotificationGetRequest
client = Client()
command = ServiceProviderEmergencyCallNotificationGetRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)