@@ -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