UserMeetMeConferencingGetConferenceDelegateListRequest
Bases: OCIRequest
Get the conference delegates for this conference. The response is either UserMeetMeConferencingGetConferenceDelegateListResponse or ErrorResponse.
Attributes:
user_id (str):
conference_key (MeetMeConferencingConferenceKey):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserMeetMeConferencingGetConferenceDelegateListRequest. Contains a table with table heading:"User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name","Phone Number", "Extension", "Department" and "Email Address".
Attributes:
conference_delegate_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 UserMeetMeConferencingGetConferenceDelegateListRequest
client = Client()
command = UserMeetMeConferencingGetConferenceDelegateListRequest(
user_id=...,
conference_key=...,
)
response = client.command(command)
print(response)