File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -117,6 +117,11 @@ class Meeting
117117 */
118118 private $ internalMeetingId ;
119119
120+ /**
121+ * @var string
122+ */
123+ private $ parentMeetingID ;
124+
120125 /**
121126 * @var bool
122127 */
@@ -177,6 +182,7 @@ public function __construct(\SimpleXMLElement $xml)
177182 $ this ->duration = (int ) $ xml ->duration ;
178183 $ this ->hasUserJoined = $ xml ->hasUserJoined ->__toString () === 'true ' ;
179184 $ this ->internalMeetingId = $ xml ->internalMeetingID ->__toString ();
185+ $ this ->parentMeetingID = $ xml ->parentMeetingID ->__toString ();
180186 $ this ->isRecording = $ xml ->recording ->__toString () === 'true ' ;
181187 $ this ->startTime = (float ) $ xml ->startTime ;
182188 $ this ->endTime = (float ) $ xml ->endTime ;
@@ -276,6 +282,11 @@ public function getInternalMeetingId(): string
276282 return $ this ->internalMeetingId ;
277283 }
278284
285+ public function getParentMeetingID (): string
286+ {
287+ return $ this ->parentMeetingID ;
288+ }
289+
279290 public function isRecording (): bool
280291 {
281292 return $ this ->isRecording ;
You can’t perform that action at this time.
0 commit comments