UserSimultaneousRingFamilyGetCriteriaRequest
Bases: OCIRequest
Get a criteria for the user's simultaneous ring family service. The response is either a UserSimultaneousRingFamilyGetCriteriaResponse or an ErrorResponse.
Attributes:
user_id (str):
criteria_name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserSimultaneousRingFamilyGetCriteriaRequest.
Attributes:
time_schedule (Optional[TimeSchedule]):
holiday_schedule (Optional[HolidaySchedule]):
blacklisted (bool):
from_dn_criteria (CriteriaFromDn):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserSimultaneousRingFamilyGetCriteriaRequest
client = Client()
command = UserSimultaneousRingFamilyGetCriteriaRequest(
user_id=...,
criteria_name=...,
)
response = client.command(command)
print(response)