@@ -373,14 +373,17 @@ def fetch(self):
373373 )
374374
375375 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 ):
377378 """
378379 Update the ParticipantInstance
379380
380381 :param bool muted: Indicates if the participant should be muted
381382 :param bool hold: The hold
382383 :param unicode hold_url: The hold_url
383384 :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
384387
385388 :returns: Updated ParticipantInstance
386389 :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,
390393 'Hold' : hold ,
391394 'HoldUrl' : hold_url ,
392395 'HoldMethod' : hold_method ,
396+ 'AnnounceUrl' : announce_url ,
397+ 'AnnounceUrlMethod' : announce_url_method ,
393398 })
394399
395400 payload = self ._version .update (
@@ -585,14 +590,17 @@ def fetch(self):
585590 return self ._proxy .fetch ()
586591
587592 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 ):
589595 """
590596 Update the ParticipantInstance
591597
592598 :param bool muted: Indicates if the participant should be muted
593599 :param bool hold: The hold
594600 :param unicode hold_url: The hold_url
595601 :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
596604
597605 :returns: Updated ParticipantInstance
598606 :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,
602610 hold = hold ,
603611 hold_url = hold_url ,
604612 hold_method = hold_method ,
613+ announce_url = announce_url ,
614+ announce_url_method = announce_url_method ,
605615 )
606616
607617 def delete (self ):
0 commit comments