Skip to content

MeetMeConferencingConferenceRecordingKey

Bases: OCIType

Identifier for conference recording. startTime is the recording start timestamp.

Attributes:

bridge_id (str):

conference_id (str):

start_time (str):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class MeetMeConferencingConferenceRecordingKey(OCIType):
    """Identifier for conference recording. startTime is the recording start timestamp.

    Attributes:

        bridge_id (str):

        conference_id (str):

        start_time (str):

    """

    bridge_id: str = field(metadata={"alias": "bridgeId"})

    conference_id: str = field(metadata={"alias": "conferenceId"})

    start_time: str = field(metadata={"alias": "startTime"})