GroupCallCenterGetDistinctiveRingingRequest
Bases: OCIRequest
Get the distinctive ringing configuration values for call center. The response is either a GroupCallCenterGetDistinctiveRingingResponse or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterGetDistinctiveRingingRequest.
Attributes:
distinctive_ringing_call_center_calls (bool):
distinctive_ringing_ring_pattern_for_call_center (str):
distinctive_ringing_force_delivery_ring_pattern (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCallCenterGetDistinctiveRingingRequest
client = Client()
command = GroupCallCenterGetDistinctiveRingingRequest(
service_user_id=...,
)
response = client.command(command)
print(response)