UserExecutiveAssistantGetRequest
Bases: OCIRequest
Get the setting of an executive assistant. The response is either UserExecutiveAssistantGetResponse or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserExecutiveAssistantGetRequest. Contains the executive assistant setting and a table of executives this assistant has been assigned to. The criteria table's column headings are: "User Id", "Last Name", "First Name", ", "Hiragana Last Name", "Hiragana First Name", "Phone Number", "Extension", "Department", "Email Address", "Assistant Opt-in Status" and "Executive Allow Opt-in". The possible values for "Assistant Opt-in Status" and "Executive Allow Opt-in" columns are "true" and "false".
Attributes:
enable_divert (bool):
divert_to_phone_number (Optional[str]):
executive_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 UserExecutiveAssistantGetRequest
client = Client()
command = UserExecutiveAssistantGetRequest(
user_id=...,
)
response = client.command(command)
print(response)