GroupGroupPagingGetOriginatorListRequest
Bases: OCIRequest
Get a list of originators assigned to a paging group. The response is either a GroupGroupPagingGetOriginatorListResponse or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupGroupPagingGetOriginatorListRequest. Contains a table with column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Phone Number", "Extension", "Department", "Email Address".
Attributes:
originator_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 GroupGroupPagingGetOriginatorListRequest
client = Client()
command = GroupGroupPagingGetOriginatorListRequest(
service_user_id=...,
)
response = client.command(command)
print(response)