@@ -47,7 +47,7 @@ def stream(self, status=values.unset, date_created_after=values.unset,
4747 :param CompositionInstance.Status status: Only show Compositions with the given status.
4848 :param datetime date_created_after: Only show Compositions that started on or after this ISO8601 date-time.
4949 :param datetime date_created_before: Only show Compositions that started before this this ISO8601 date-time.
50- :param unicode room_sid: The room_sid
50+ :param unicode room_sid: Only show Compositions with the given Room SID.
5151 :param int limit: Upper limit for the number of records to return. stream()
5252 guarantees to never return more than limit. Default is no limit
5353 :param int page_size: Number of records to fetch per request, when not set will use
@@ -81,7 +81,7 @@ def list(self, status=values.unset, date_created_after=values.unset,
8181 :param CompositionInstance.Status status: Only show Compositions with the given status.
8282 :param datetime date_created_after: Only show Compositions that started on or after this ISO8601 date-time.
8383 :param datetime date_created_before: Only show Compositions that started before this this ISO8601 date-time.
84- :param unicode room_sid: The room_sid
84+ :param unicode room_sid: Only show Compositions with the given Room SID.
8585 :param int limit: Upper limit for the number of records to return. list() guarantees
8686 never to return more than limit. Default is no limit
8787 :param int page_size: Number of records to fetch per request, when not set will use
@@ -112,7 +112,7 @@ def page(self, status=values.unset, date_created_after=values.unset,
112112 :param CompositionInstance.Status status: Only show Compositions with the given status.
113113 :param datetime date_created_after: Only show Compositions that started on or after this ISO8601 date-time.
114114 :param datetime date_created_before: Only show Compositions that started before this this ISO8601 date-time.
115- :param unicode room_sid: The room_sid
115+ :param unicode room_sid: Only show Compositions with the given Room SID.
116116 :param str page_token: PageToken provided by the API
117117 :param int page_number: Page Number, this value is simply for client state
118118 :param int page_size: Number of records to return, defaults to 50
@@ -168,7 +168,7 @@ def create(self, room_sid=values.unset, video_layout=values.unset,
168168 :param unicode audio_sources: A list of audio sources related to this Composition.
169169 :param unicode audio_sources_excluded: A list of audio sources excluded related to this Composition.
170170 :param unicode resolution: Pixel resolution of the composed video.
171- :param CompositionInstance.Format format: ontainer format of the Composition media file. Any of the following: `mp4`, `webm`.
171+ :param CompositionInstance.Format format: Container format of the Composition media file. Any of the following: `mp4`, `webm`.
172172 :param unicode status_callback: A URL that Twilio sends asynchronous webhook requests to on every composition event.
173173 :param unicode status_callback_method: HTTP method Twilio should use when requesting the above URL.
174174 :param bool trim: Boolean flag for clipping intervals that have no media.
0 commit comments