Skip to content

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
@dataclass(kw_only=True)
class UserMeetMeConferencingGetConferenceDelegateListRequest(OCIRequest):
    """Get the conference delegates for this conference.
        The response is either UserMeetMeConferencingGetConferenceDelegateListResponse or ErrorResponse.

    Attributes:

        user_id (str):

        conference_key (MeetMeConferencingConferenceKey):

    """

    user_id: str = field(metadata={"alias": "userId"})

    conference_key: MeetMeConferencingConferenceKey = field(
        metadata={"alias": "conferenceKey"}
    )

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
@dataclass(kw_only=True)
class UserMeetMeConferencingGetConferenceDelegateListResponse(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):

    """

    conference_delegate_user_table: OCITable = field(
        metadata={"alias": "conferenceDelegateUserTable"}
    )

Bases: OCIResponse

Source code in src/mercury_ocip_fast/commands/base_command.py
class ErrorResponse(OCIResponse):
    errorCode: Optional[int] = None
    summary: str
    summaryEnglish: str
    detail: Optional[str] = None

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)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("UserMeetMeConferencingGetConferenceDelegateListRequest",
    user_id=...,
    conference_key=...,
)

print(response)