@@ -373,14 +373,17 @@ def fetch(self):
373
373
)
374
374
375
375
def update (self , muted = values .unset , hold = values .unset , hold_url = values .unset ,
376
- hold_method = values .unset ):
376
+ hold_method = values .unset , announce_url = values .unset ,
377
+ announce_url_method = values .unset ):
377
378
"""
378
379
Update the ParticipantInstance
379
380
380
381
:param bool muted: Indicates if the participant should be muted
381
382
:param bool hold: The hold
382
383
:param unicode hold_url: The hold_url
383
384
:param unicode hold_method: The hold_method
385
+ :param unicode announce_url: The announce_url
386
+ :param unicode announce_url_method: The announce_url_method
384
387
385
388
:returns: Updated ParticipantInstance
386
389
:rtype: twilio.rest.api.v2010.account.conference.participant.ParticipantInstance
@@ -390,6 +393,8 @@ def update(self, muted=values.unset, hold=values.unset, hold_url=values.unset,
390
393
'Hold' : hold ,
391
394
'HoldUrl' : hold_url ,
392
395
'HoldMethod' : hold_method ,
396
+ 'AnnounceUrl' : announce_url ,
397
+ 'AnnounceUrlMethod' : announce_url_method ,
393
398
})
394
399
395
400
payload = self ._version .update (
@@ -585,14 +590,17 @@ def fetch(self):
585
590
return self ._proxy .fetch ()
586
591
587
592
def update (self , muted = values .unset , hold = values .unset , hold_url = values .unset ,
588
- hold_method = values .unset ):
593
+ hold_method = values .unset , announce_url = values .unset ,
594
+ announce_url_method = values .unset ):
589
595
"""
590
596
Update the ParticipantInstance
591
597
592
598
:param bool muted: Indicates if the participant should be muted
593
599
:param bool hold: The hold
594
600
:param unicode hold_url: The hold_url
595
601
:param unicode hold_method: The hold_method
602
+ :param unicode announce_url: The announce_url
603
+ :param unicode announce_url_method: The announce_url_method
596
604
597
605
:returns: Updated ParticipantInstance
598
606
:rtype: twilio.rest.api.v2010.account.conference.participant.ParticipantInstance
@@ -602,6 +610,8 @@ def update(self, muted=values.unset, hold=values.unset, hold_url=values.unset,
602
610
hold = hold ,
603
611
hold_url = hold_url ,
604
612
hold_method = hold_method ,
613
+ announce_url = announce_url ,
614
+ announce_url_method = announce_url_method ,
605
615
)
606
616
607
617
def delete (self ):
0 commit comments