Skip to content

Commit afee4cc

Browse files
authored
Getting of the parentMeetingID in the class Meeting (#200)
1 parent 7f7320f commit afee4cc

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/Core/Meeting.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)