@@ -44,7 +44,7 @@ def create(self, enable_turn=values.unset, type=values.unset,
44
44
Create a new RoomInstance
45
45
46
46
: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.
48
48
:param unicode unique_name: Name of the Room.
49
49
:param unicode status_callback: A URL that Twilio sends asynchronous webhook requests to on every room event.
50
50
:param unicode status_callback_method: HTTP method Twilio should use when requesting the above URL.
@@ -200,7 +200,7 @@ def get(self, sid):
200
200
"""
201
201
Constructs a RoomContext
202
202
203
- :param sid: The sid
203
+ :param sid: The Room Sid or name that uniquely identifies this resource.
204
204
205
205
:returns: twilio.rest.video.v1.room.RoomContext
206
206
:rtype: twilio.rest.video.v1.room.RoomContext
@@ -211,7 +211,7 @@ def __call__(self, sid):
211
211
"""
212
212
Constructs a RoomContext
213
213
214
- :param sid: The sid
214
+ :param sid: The Room Sid or name that uniquely identifies this resource.
215
215
216
216
:returns: twilio.rest.video.v1.room.RoomContext
217
217
:rtype: twilio.rest.video.v1.room.RoomContext
@@ -275,7 +275,7 @@ def __init__(self, version, sid):
275
275
Initialize the RoomContext
276
276
277
277
: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.
279
279
280
280
:returns: twilio.rest.video.v1.room.RoomContext
281
281
:rtype: twilio.rest.video.v1.room.RoomContext
@@ -372,6 +372,7 @@ class RoomStatus(object):
372
372
class RoomType (object ):
373
373
PEER_TO_PEER = "peer-to-peer"
374
374
GROUP = "group"
375
+ GROUP_SMALL = "group-small"
375
376
376
377
class VideoCodec (object ):
377
378
VP8 = "VP8"
@@ -516,7 +517,7 @@ def duration(self):
516
517
@property
517
518
def type (self ):
518
519
"""
519
- :returns: Type of Room, either peer-to-peer or group.
520
+ :returns: Type of Room, either peer-to-peer, group-small or group.
520
521
:rtype: RoomInstance.RoomType
521
522
"""
522
523
return self ._properties ['type' ]
0 commit comments