UserSimultaneousRingPersonalGetRequest17
Bases: OCIRequest
Get the user's simultaneous ring personal service setting. The response is either a UserSimultaneousRingPersonalGetResponse17 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserSimultaneousRingPersonalGetRequest17. Contains a criteria table with column heading: "Is Active", "Criteria Name", "Time Schedule", "Holiday Schedule", "Calls From" and "Blacklisted".
Attributes:
is_active (bool):
do_not_ring_if_on_call (bool):
simultaneous_ring_number (Optional[List[SimultaneousRingNumber]]):
criteria_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserSimultaneousRingPersonalGetRequest17
client = Client()
command = UserSimultaneousRingPersonalGetRequest17(
user_id=...,
)
response = client.command(command)
print(response)