UserPushToTalkGetRequest
Bases: OCIRequest
Request the push to talk service setting. The response is either a UserPushToTalkGetResponse or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserPushToTalkGetRequest. It returns the service settings and a 9 column selected user table with the following column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Phone Number", "Extension", "Department", "Email Address", "IMP Id".
Attributes:
allow_auto_answer (bool):
outgoing_connection_selection (str):
access_list_selection (str):
selected_user_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserPushToTalkGetRequest
client = Client()
command = UserPushToTalkGetRequest(
user_id=...,
)
response = client.command(command)
print(response)