UserPersonalAssistantGetRequest24
Bases: OCIRequest
Request to get the User Personal Assistant information. The response is either a UserPersonalAssistantGetResponse24 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserPersonalAssistantGetRequest24. The response contains the user Personal Assistant information and a table of Schedule Selective Criteria entries. The schedule table's column headings are: "Is Active", "Criteria Name", "Time Schedule", "Holiday Schedule", "Presence", "Transfer to Attendant", "Attendant Number", "Play Ring Splash", "Alert Me First", "Number of Rings".
Attributes:
presence (str):
enable_transfer_to_attendant (bool):
attendant_number (Optional[str]):
enable_ring_splash (bool):
enable_expiration_time (bool):
expiration_time (Optional[str]):
alert_me_first (bool):
alert_me_first_number_of_rings (int):
schedule_table (Optional[OCITable]):
Source code in src/mercury_ocip_fast/commands/commands.py
156066 156067 156068 156069 156070 156071 156072 156073 156074 156075 156076 156077 156078 156079 156080 156081 156082 156083 156084 156085 156086 156087 156088 156089 156090 156091 156092 156093 156094 156095 156096 156097 156098 156099 156100 156101 156102 156103 156104 156105 156106 156107 156108 156109 156110 156111 156112 156113 156114 156115 156116 156117 156118 156119 156120 156121 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserPersonalAssistantGetRequest24
client = Client()
command = UserPersonalAssistantGetRequest24(
user_id=...,
)
response = client.command(command)
print(response)