Skip to content

Commit ae0a2fe

Browse files
author
Vinothini Dharmaraj
committed
Addressing the apiview comments
1 parent 19c98ac commit ae0a2fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sdk/communication/azure-communication-callautomation/azure/communication/callautomation/aio/_call_connection_client_async.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ async def play_media(
421421
self,
422422
play_source: Union[Union['FileSource', 'TextSource', 'SsmlSource'],
423423
List[Union['FileSource', 'TextSource', 'SsmlSource']]],
424-
play_to: Union[Literal["all"], List['CommunicationIdentifier']] = 'all',
424+
play_to: List['CommunicationIdentifier'],
425425
*,
426426
loop: bool = False,
427427
operation_context: Optional[str] = None,
@@ -462,7 +462,7 @@ async def play_media(
462462
self,
463463
play_source: Union[Union['FileSource', 'TextSource', 'SsmlSource'],
464464
List[Union['FileSource', 'TextSource', 'SsmlSource']]],
465-
play_to: Union[Literal["all"], List['CommunicationIdentifier']] = 'all',
465+
play_to: Literal["all"] = 'all',
466466
*,
467467
loop: bool = False,
468468
operation_context: Optional[str] = None,
@@ -491,7 +491,7 @@ async def play_media(
491491
This setup is per-action. If this is not set, the default callback URL set by
492492
CreateCall/AnswerCall will be used.
493493
:paramtype operation_callback_url: str or None
494-
:keyword interrupt_call_media_operation: If set play can barge into other existing
494+
:keyword interrupt_call_media_operation: If set, media will take priority over other existing
495495
queued-up/currently-processing requests. This is applicable only when play_to set to all.
496496
:paramtype interrupt_call_media_operation: bool
497497
:return: None

0 commit comments

Comments
 (0)