UserCallParkGetRequest
Bases: OCIRequest
Identifies which Call Park group the user belongs to if any and the list of users in the group. The response is either UserCallParkGetResponse or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserCallParkGetRequest. Identifies which Call Park group the user belongs to and the list of users in the group. Contains a table with column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "User External Id", and "User Place Type". The following columns are supported in AS data mode only: "User External Id", "User Place Type" The possible values for "User Place Type" are: User, Place. The users are in the table in the order they will try to be parked on.
Attributes:
name (Optional[str]):
user_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 UserCallParkGetRequest
client = Client()
command = UserCallParkGetRequest(
user_id=...,
)
response = client.command(command)
print(response)