diff --git a/pyproject.toml b/pyproject.toml index 91cda5a..ba148c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyzoom" -version = "1.0.7" +version = "1.0.8" description = "Python wrapper for Zoom Video API" authors = ["MB "] license = "MIT" diff --git a/pyzoom/schemas.py b/pyzoom/schemas.py index deaea5b..a4ee028 100644 --- a/pyzoom/schemas.py +++ b/pyzoom/schemas.py @@ -26,7 +26,7 @@ class ZoomMeetingSettings(MyZoomBase): watermark: bool use_pmi: bool approval_type: Literal[0, 1, 2] - registration_type: Optional[Literal[1, 2, 3]] + registration_type: Optional[Literal[1, 2, 3]] = None audio: Literal["voip", "telephony", "both"] auto_recording: Literal["local", "cloud", "none"] enforce_login: bool @@ -153,7 +153,7 @@ class MeetingParticipantList(MyZoomBase): page_count: int page_size: int total_records: int - participants: Optional[List[MeetingParticipant]] + participants: Optional[List[MeetingParticipant]] = None def __len__(self): return len(self.participants)