Skip to content

Commit e4b5b81

Browse files
committed
[Librarian] Regenerated @ 08a6416972d0fdaff7290be6e096c75c62411770
1 parent f30c977 commit e4b5b81

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ twilio-python Changelog
33

44
Here you can see the full list of changes between each twilio-python release.
55

6+
[2018-02-09] Version 6.10.3
7+
----------------------------
8+
**Api**
9+
- Add `AnnounceUrl` and `AnnounceMethod` params for conference announce
10+
11+
**Chat**
12+
- Add support to looking up user channels by identity in v1
13+
14+
615
[2018-01-30] Version 6.10.2
716
----------------------------
817
**Preview**

twilio/rest/api/v2010/account/conference/__init__.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)