@@ -47,7 +47,7 @@ def stream(self, status=values.unset, date_created_after=values.unset,
47
47
:param CompositionInstance.Status status: Only show Compositions with the given status.
48
48
:param datetime date_created_after: Only show Compositions that started on or after this ISO8601 date-time.
49
49
: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.
51
51
:param int limit: Upper limit for the number of records to return. stream()
52
52
guarantees to never return more than limit. Default is no limit
53
53
: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,
81
81
:param CompositionInstance.Status status: Only show Compositions with the given status.
82
82
:param datetime date_created_after: Only show Compositions that started on or after this ISO8601 date-time.
83
83
: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.
85
85
:param int limit: Upper limit for the number of records to return. list() guarantees
86
86
never to return more than limit. Default is no limit
87
87
: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,
112
112
:param CompositionInstance.Status status: Only show Compositions with the given status.
113
113
:param datetime date_created_after: Only show Compositions that started on or after this ISO8601 date-time.
114
114
: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.
116
116
:param str page_token: PageToken provided by the API
117
117
:param int page_number: Page Number, this value is simply for client state
118
118
: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,
168
168
:param unicode audio_sources: A list of audio sources related to this Composition.
169
169
:param unicode audio_sources_excluded: A list of audio sources excluded related to this Composition.
170
170
: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`.
172
172
:param unicode status_callback: A URL that Twilio sends asynchronous webhook requests to on every composition event.
173
173
:param unicode status_callback_method: HTTP method Twilio should use when requesting the above URL.
174
174
:param bool trim: Boolean flag for clipping intervals that have no media.
0 commit comments