UserSimultaneousRingFamilyGetRequest17
Bases: OCIRequest
Get the user's simultaneous ring family service setting. The response is either a UserSimultaneousRingFamilyGetResponse17 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserSimultaneousRingFamilyGetRequest17. Contains a criteria table wich 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_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserSimultaneousRingFamilyGetRequest17
client = Client()
command = UserSimultaneousRingFamilyGetRequest17(
user_id=...,
)
response = client.command(command)
print(response)