@@ -302,16 +302,19 @@ def fetch(self):
302302 sid = self ._solution ['sid' ],
303303 )
304304
305- def update (self , status = values .unset ):
305+ def update (self , status = values .unset , announce_url = values .unset ,
306+ announce_method = values .unset ):
306307 """
307308 Update the ConferenceInstance
308309
309310 :param ConferenceInstance.UpdateStatus status: The status
311+ :param unicode announce_url: The announce_url
312+ :param unicode announce_method: The announce_method
310313
311314 :returns: Updated ConferenceInstance
312315 :rtype: twilio.rest.api.v2010.account.conference.ConferenceInstance
313316 """
314- data = values .of ({'Status' : status , })
317+ data = values .of ({'Status' : status , 'AnnounceUrl' : announce_url , 'AnnounceMethod' : announce_method , })
315318
316319 payload = self ._version .update (
317320 'POST' ,
@@ -497,16 +500,19 @@ def fetch(self):
497500 """
498501 return self ._proxy .fetch ()
499502
500- def update (self , status = values .unset ):
503+ def update (self , status = values .unset , announce_url = values .unset ,
504+ announce_method = values .unset ):
501505 """
502506 Update the ConferenceInstance
503507
504508 :param ConferenceInstance.UpdateStatus status: The status
509+ :param unicode announce_url: The announce_url
510+ :param unicode announce_method: The announce_method
505511
506512 :returns: Updated ConferenceInstance
507513 :rtype: twilio.rest.api.v2010.account.conference.ConferenceInstance
508514 """
509- return self ._proxy .update (status = status , )
515+ return self ._proxy .update (status = status , announce_url = announce_url , announce_method = announce_method , )
510516
511517 @property
512518 def participants (self ):
0 commit comments