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/main/java/com/bandwidth/voice/bxml/verbs/StopStream.java
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,10 @@
2
2
packagecom.bandwidth.voice.bxml.verbs;
3
3
4
4
importlombok.Builder;
5
-
5
+
importjavax.xml.bind.annotation.XmlAttribute;
6
6
importjavax.xml.bind.annotation.XmlType;
7
7
8
+
8
9
/**
9
10
* The StopStream verb is used to stop a stream previously started by a `<StartStream>` verb.
10
11
*/
@@ -13,4 +14,9 @@
13
14
publicclassStopStreamimplementsVerb {
14
15
publicstaticfinalStringTYPE_NAME = "StopStream";
15
16
17
+
/**
18
+
* <i>(required)</i> A name to refer to this stream by. Used when sending [`<StopStream>`][1]. If not provided, a random name will be generated and sent in the [`Media Stream Started`][2] webook.
0 commit comments