Skip to content

UserMeetMeConferencingGetConferenceRecordingListRequest

Bases: OCIRequest

Get the list of recordings of the conferences owned by the host. The response is either UserMeetMeConferencingGetConferenceRecordingListResponse or ErrorResponse.

Attributes:

user_id (str):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class UserMeetMeConferencingGetConferenceRecordingListRequest(OCIRequest):
    """Get the list of recordings of the conferences owned by the host.
        The response is either UserMeetMeConferencingGetConferenceRecordingListResponse or ErrorResponse.

    Attributes:

        user_id (str):

    """

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

Responses

Bases: OCIDataResponse

Response to the UserMeetMeConferencingGetConferenceRecordingListRequest. Contains a table with column headings: "Bridge Id", "Conference Id", "Conference Title", "Bridge Name", "Start Time", "File Size", and "URL". Start Time is in the format "yyyy-MM-dd'T'HH:mm:ss:SSSZ". Example: 2010-10-01T09:30:00:000-0400.

Attributes:

conference_recording_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class UserMeetMeConferencingGetConferenceRecordingListResponse(OCIDataResponse):
    """Response to the UserMeetMeConferencingGetConferenceRecordingListRequest.
        Contains a table with column headings: \"Bridge Id\", \"Conference Id\", \"Conference Title\", \"Bridge Name\", \"Start Time\", \"File Size\", and \"URL\".
        Start Time is in the format \"yyyy-MM-dd'T'HH:mm:ss:SSSZ\". Example: 2010-10-01T09:30:00:000-0400.

    Attributes:

        conference_recording_table (OCITable):

    """

    conference_recording_table: OCITable = field(
        metadata={"alias": "conferenceRecordingTable"}
    )

Bases: OCIResponse

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

Example Usage

from mercury_ocip.client import Client
from mercury_ocip.commands import UserMeetMeConferencingGetConferenceRecordingListRequest

client = Client()

command = UserMeetMeConferencingGetConferenceRecordingListRequest(
    user_id=...,
)

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("UserMeetMeConferencingGetConferenceRecordingListRequest",
    user_id=...,
)

print(response)