UserSeriesCompletionGetRequest
Bases: OCIRequest
Gets the details of the Series Completion group that a user belongs to (if any). Any user can only belong to one Series Completion group. The response is either UserSeriesCompletionGetResponse or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserSeriesCompletionGetRequest. Identifies which Series Completion 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", "Department", "Phone Number", "Extension", "Email Address".
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 UserSeriesCompletionGetRequest
client = Client()
command = UserSeriesCompletionGetRequest(
user_id=...,
)
response = client.command(command)
print(response)