We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28dbab8 commit 38261c6Copy full SHA for 38261c6
1 file changed
src/Core/Meeting.php
@@ -151,6 +151,11 @@ class Meeting
151
*/
152
private $metas;
153
154
+ /**
155
+ * @var bool
156
+ */
157
+ private $isBreakout;
158
+
159
/**
160
* Meeting constructor.
161
* @param $xml \SimpleXMLElement
@@ -180,6 +185,7 @@ public function __construct($xml)
180
185
$this->endTime = (float) $xml->endTime;
181
186
$this->maxUsers = (int) $xml->maxUsers->__toString();
182
187
$this->moderatorCount = (int) $xml->moderatorCount->__toString();
188
+ $this->isBreakout = $xml->isBreakout->__toString() === 'true';
183
189
}
184
190
191
@@ -417,4 +423,9 @@ public function getMetas()
417
423
418
424
return $this->metas;
419
425
426
427
+ public function isBreakout(): bool
428
+ {
429
+ return $this->isBreakout;
430
+ }
420
431
0 commit comments