10000 [Librarian] Regenerated @ c0f93e26526002f7764edf27e9868d4b174ffda2 · BioComputing/twilio-python@0645a48 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0645a48

Browse files
committed
[Librarian] Regenerated @ c0f93e26526002f7764edf27e9868d4b174ffda2
1 parent cd2834c commit 0645a48

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
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-07-17] Version 6.15.1
7+
----------------------------
8+
**Library**
9+
- PR #439: Override generated attributes when generating TwiML. Thanks to @cjcodes!
10+
11+
**Video**
12+
- Add `group-small` room type
13+
14+
615
[2018-07-16] Version 6.15.0
716
----------------------------
817
**Library**

twilio/rest/video/v1/room/__init__.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def create(self, enable_turn=values.unset, type=values.unset,
4444
Create a new RoomInstance
4545
4646
:param bool enable_turn: Use Twilio Network Traversal for TURN service.
47-
:param RoomInstance.RoomType type: Type of room, either peer-to-peer or group.
47+
:param RoomInstance.RoomType type: Type of room, either peer-to-peer, group-small or group.
4848
:param unicode unique_name: Name of the Room.
4949
:param unicode status_callback: A URL that Twilio sends asynchronous webhook requests to on every room event.
5050
:param unicode status_callback_method: HTTP method Twilio should use when requesting the above URL.
@@ -200,7 +200,7 @@ def get(self, sid):
200200
"""
201201
Constructs a RoomContext
202202
203-
:param sid: The sid
203+
:param sid: The Room Sid or name that uniquely identifies this resource.
204204
205205
:returns: twilio.rest.video.v1.room.RoomContext
206206
:rtype: twilio.rest.video.v1.room.RoomContext
@@ -211,7 +211,7 @@ def __call__(self, sid):
211211
"""
212212
Constructs a RoomContext
213213
214-
:param sid: The sid
214+
:param sid: The Room Sid or name that uniquely identifies this resource.
215215
216216
:returns: twilio.rest.video.v1.room.RoomContext
217217
:rtype: twilio.rest.video.v1.room.RoomContext
@@ -275,7 +275,7 @@ def __init__(self, version, sid):
275275
Initialize the RoomContext
276276
277277
:param Version version: Version that contains the resource
278-
:param sid: The sid
278+
:param sid: The Room Sid or name that uniquely identifies this resource.
279279
280280
:returns: twilio.rest.video.v1.room.RoomContext
281281
:rtype: twilio.rest.video.v1.room.RoomContext
@@ -372,6 +372,7 @@ class RoomStatus(object):
372372
class RoomType(object):
373373
PEER_TO_PEER = "peer-to-peer"
374374
GROUP = "group"
375+
GROUP_SMALL = "group-small"
375376

376377
class VideoCodec(object):
377378
VP8 = "VP8"
@@ -516,7 +517,7 @@ def duration(self):
516517
@property
517518
def type(self):
518519
"""
519-
:returns: Type of Room, either peer-to-peer or group.
520+
:returns: Type of Room, either peer-to-peer, group-small or group.
520521
:rtype: RoomInstance.RoomType
521522
"""
522523
return self._properties['type']

0 commit comments

Comments
 (0)
0