@@ -310,7 +310,7 @@ def list_experience_composers(
310
310
"""Lists Experience Composers associated with your Vonage application.
311
311
312
312
Args:
313
- filter (ListExperienceComposersFilter): Filter for the Experience Composers.
313
+ filter (ListExperienceComposersFilter, Optional ): Filter for the Experience Composers.
314
314
315
315
Returns:
316
316
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:
358
358
359
359
@validate_call
360
360
def list_archives (
361
- self , filter : ListArchivesFilter
361
+ self , filter : ListArchivesFilter = ListArchivesFilter ()
362
362
) -> tuple [list [Archive ], int , Optional [int ]]:
363
363
"""Lists archives associated with a Vonage Application.
364
364
365
365
Args:
366
- filter (ListArchivesFilter): The filters for the archives.
366
+ filter (ListArchivesFilter, Optional ): The filters for the archives.
367
367
368
368
Returns:
369
369
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
513
513
514
514
@validate_call
515
515
def list_broadcasts (
516
- self , filter : ListBroadcastsFilter
516
+ self , filter : ListBroadcastsFilter = ListBroadcastsFilter ()
517
517
) -> tuple [list [Broadcast ], int , Optional [int ]]:
518
518
"""Lists broadcasts associated with a Vonage Application.
519
519
520
520
Args:
521
- filter (ListBroadcastsFilter): The filters for the broadcasts.
521
+ filter (ListBroadcastsFilter, Optional ): The filters for the broadcasts.
522
522
523
523
Returns:
524
524
tuple[list[Broadcast], int, Optional[int]]: A tuple containing a list of broadcast objects,
0 commit comments