@@ -302,16 +302,19 @@ def fetch(self):
302
302
sid = self ._solution ['sid' ],
303
303
)
304
304
305
- def update (self , status = values .unset ):
305
+ def update (self , status = values .unset , announce_url = values .unset ,
306
+ announce_method = values .unset ):
306
307
"""
307
308
Update the ConferenceInstance
308
309
309
310
:param ConferenceInstance.UpdateStatus status: The status
311
+ :param unicode announce_url: The announce_url
312
+ :param unicode announce_method: The announce_method
310
313
311
314
:returns: Updated ConferenceInstance
312
315
:rtype: twilio.rest.api.v2010.account.conference.ConferenceInstance
313
316
"""
314
- data = values .of ({'Status' : status , })
317
+ data = values .of ({'Status' : status , 'AnnounceUrl' : announce_url , 'AnnounceMethod' : announce_method , })
315
318
316
319
payload = self ._version .update (
317
320
'POST' ,
@@ -497,16 +500,19 @@ def fetch(self):
497
500
"""
498
501
return self ._proxy .fetch ()
499
502
500
- def update (self , status = values .unset ):
503
+ def update (self , status = values .unset , announce_url = values .unset ,
504
+ announce_method = values .unset ):
501
505
"""
502
506
Update the ConferenceInstance
503
507
504
508
:param ConferenceInstance.UpdateStatus status: The status
509
+ :param unicode announce_url: The announce_url
510
+ :param unicode announce_method: The announce_method
505
511
506
512
:returns: Updated ConferenceInstance
507
513
:rtype: twilio.rest.api.v2010.account.conference.ConferenceInstance
508
514
"""
509
- return self ._proxy .update (status = status , )
515
+ return self ._proxy .update (status = status , announce_url = announce_url , announce_method = announce_method , )
510
516
511
517
@property
512
518
def participants (self ):
0 commit comments