@@ -310,7 +310,7 @@ def list_experience_composers(
310310 """Lists Experience Composers associated with your Vonage application.
311311
312312 Args:
313- filter (ListExperienceComposersFilter): Filter for the Experience Composers.
313+ filter (ListExperienceComposersFilter, Optional ): Filter for the Experience Composers.
314314
315315 Returns:
316316 tuple[list[ExperienceComposer], int, Optional[int]]: A tuple containing a list of experience
@@ -358,12 +358,12 @@ def stop_experience_composer(self, experience_composer_id: str) -> None:
358358
359359 @validate_call
360360 def list_archives (
361- self , filter : ListArchivesFilter
361+ self , filter : ListArchivesFilter = ListArchivesFilter ()
362362 ) -> tuple [list [Archive ], int , Optional [int ]]:
363363 """Lists archives associated with a Vonage Application.
364364
365365 Args:
366- filter (ListArchivesFilter): The filters for the archives.
366+ filter (ListArchivesFilter, Optional ): The filters for the archives.
367367
368368 Returns:
369369 tuple[list[Archive], int, Optional[int]]: A tuple containing a list of archive objects,
@@ -513,12 +513,12 @@ def change_archive_layout(self, archive_id: str, layout: ComposedLayout) -> Arch
513513
514514 @validate_call
515515 def list_broadcasts (
516- self , filter : ListBroadcastsFilter
516+ self , filter : ListBroadcastsFilter = ListBroadcastsFilter ()
517517 ) -> tuple [list [Broadcast ], int , Optional [int ]]:
518518 """Lists broadcasts associated with a Vonage Application.
519519
520520 Args:
521- filter (ListBroadcastsFilter): The filters for the broadcasts.
521+ filter (ListBroadcastsFilter, Optional ): The filters for the broadcasts.
522522
523523 Returns:
524524 tuple[list[Broadcast], int, Optional[int]]: A tuple containing a list of broadcast objects,
0 commit comments