You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Voice/Bxml/StartTranscription.php
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,10 @@ class StartTranscription extends Verb {
48
48
* @var bool
49
49
*/
50
50
private$stability;
51
+
/**
52
+
* @var bool
53
+
*/
54
+
private$stabilized;
51
55
52
56
/**
53
57
* Sets the destination attribute for StartTranscription
@@ -131,6 +135,17 @@ public function stability( bool $stability): StartTranscription {
131
135
return$this;
132
136
}
133
137
138
+
/**
139
+
* Sets the stabilized attribute for StartTranscription
140
+
*
141
+
* @param bool Whether to send transcription update events to the specified destination only after they have become stable. Requires destination. Defaults to true.
* Sets the <CustomParam/> tag. You may specify up to 12 <CustomParam/> elements nested within a <StartTranscription> tag. These elements define optional user specified parameters that will be sent to the destination URL when the real-time transcription is first started.
136
151
*
@@ -176,6 +191,10 @@ public function toBxml(DOMDocument $doc): DOMElement {
0 commit comments