UserMeetMeConferencingGetConferenceRequest23
Bases: OCIRequest
Get the information of a conference owned by the user. The response is either UserMeetMeConferencingGetConferenceResponse23 or ErrorResponse.
Attributes:
user_id (str):
conference_key (MeetMeConferencingConferenceKey):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserMeetMeConferencingGetConferenceRequest23. Contains the information of a conference.
Attributes:
title (str):
estimated_participants (Optional[int]):
restrict_participants (Optional[bool]):
max_participants (Optional[int]):
account_code (Optional[str]):
mute_all_attendees_on_entry (bool):
end_conference_on_moderator_exit (bool):
moderator_required (bool):
require_security_pin (bool):
security_pin (Optional[str]):
allow_unique_identifier (bool):
attendee_notification (str):
conference_schedule (MeetMeConferencingConferenceSchedule):
moderator_pin (str):
host_time_zone (str):
allow_participant_unmute_in_auto_lecture_mode (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
155464 155465 155466 155467 155468 155469 155470 155471 155472 155473 155474 155475 155476 155477 155478 155479 155480 155481 155482 155483 155484 155485 155486 155487 155488 155489 155490 155491 155492 155493 155494 155495 155496 155497 155498 155499 155500 155501 155502 155503 155504 155505 155506 155507 155508 155509 155510 155511 155512 155513 155514 155515 155516 155517 155518 155519 155520 155521 155522 155523 155524 155525 155526 155527 155528 155529 155530 155531 155532 155533 155534 155535 155536 155537 155538 155539 155540 155541 155542 155543 155544 155545 155546 155547 155548 155549 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserMeetMeConferencingGetConferenceRequest23
client = Client()
command = UserMeetMeConferencingGetConferenceRequest23(
user_id=...,
conference_key=...,
)
response = client.command(command)
print(response)