UserPersonalAssistantGetCriteriaRequest
Bases: OCIRequest
Gets a User Personal Assistant Schedule Selective Criteria Entry. The response is either UserPersonalAssistantGetCriteriaResponse or ErrorResponse.
Attributes:
user_id (str):
criteria_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserPersonalAssistantGetCriteriaRequest.
Attributes:
time_schedule (Optional[TimeSchedule]):
holiday_schedule (Optional[HolidaySchedule]):
presence (str):
enable_transfer_to_attendant (bool):
attendant_number (Optional[str]):
enable_ring_splash (bool):
alert_me_first (bool):
alert_me_first_number_of_rings (int):
Source code in src/mercury_ocip_fast/commands/commands.py
156015 156016 156017 156018 156019 156020 156021 156022 156023 156024 156025 156026 156027 156028 156029 156030 156031 156032 156033 156034 156035 156036 156037 156038 156039 156040 156041 156042 156043 156044 156045 156046 156047 156048 156049 156050 156051 156052 156053 156054 156055 156056 156057 156058 156059 156060 156061 156062 156063 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserPersonalAssistantGetCriteriaRequest
client = Client()
command = UserPersonalAssistantGetCriteriaRequest(
user_id=...,
criteria_name=...,
)
response = client.command(command)
print(response)