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
* @param string * Sets the <StreamParam/> tag. You may specify up to 12 <StreamParam/> elements nested within a <StartStream> tag. These elements define optional user specified parameters that will be sent to the destination URL when the stream is first started.
20
+
*/
21
+
publicfunction__construct($StreamParam) {
22
+
$this->StreamParam = $StreamParam;
23
+
}
24
+
25
+
/**
26
+
* Sets the name attribute for StreamParam
27
+
*
28
+
* @param string $name (required) The name of this parameter, up to 256 characters.
29
+
*/
30
+
publicfunctionname($name) {
31
+
$this->name = $name;
32
+
}
33
+
34
+
/**
35
+
* Sets the value attribute for StreamParam
36
+
*
37
+
* @param string $value (required) The value of this parameter, up to 2048 characters.
0 commit comments