GroupRoutePointDistinctiveRingingGetRequest
Bases: OCIRequest
Get the distinctive ringing configuration values for route point. The response is either a GroupRoutePointDistinctiveRingingGetResponse or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointDistinctiveRingingGetRequest.
Attributes:
enable_distinctive_ringing (bool):
distinctive_ringing_ring_pattern (str):
distinctive_ringing_force_delivery_ring_pattern (str):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupRoutePointDistinctiveRingingGetRequest
client = Client()
command = GroupRoutePointDistinctiveRingingGetRequest(
service_user_id=...,
)
response = client.command(command)
print(response)