ServiceProviderThirdPartyEmergencyCallingGetRequest22
Bases: OCIRequest
Get the third-party emergency call service settings for the service provider. The response is either a ServiceProviderThirdPartyEmergencyCallingGetResponse22 or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ServiceProviderThirdPartyEmergencyCallingGetRequest22. The response contains the third-party emergency call service settings for the service provider.
Attributes:
allow_activation (bool):
customer_id (Optional[str]):
has_group_enabled (bool):
secret_key (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderThirdPartyEmergencyCallingGetRequest22
client = Client()
command = ServiceProviderThirdPartyEmergencyCallingGetRequest22(
service_provider_id=...,
)
response = client.command(command)
print(response)