Skip to content

Commit cb85177

Browse files
authored
add missing parameters
Add the parameters defaultLayout, guest and configToken
1 parent 6515b1f commit cb85177

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed

src/Parameters/JoinMeetingParameters.php

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,21 @@ class JoinMeetingParameters extends UserDataParameters
8888
* @var bool
8989
*/
9090
private $excludeFromDashboard;
91+
92+
/**
93+
* @var string
94+
*/
95+
private $configToken;
96+
97+
/**
98+
* @var bool
99+
*/
100+
private $guest;
101+
102+
/**
103+
* @var bool
104+
*/
105+
private $defaultLayout;
91106

92107
/**
93108
* JoinMeetingParametersTest constructor.
@@ -328,6 +343,66 @@ public function setExcludeFromDashboard($excludeFromDashboard): JoinMeetingParam
328343

329344
return $this;
330345
}
346+
347+
/**
348+
* @return string
349+
*/
350+
public function getConfigToken()
351+
{
352+
return $this->configToken;
353+
}
354+
355+
/**
356+
* @param string $configToken
357+
*
358+
* @return JoinMeetingParameters
359+
*/
360+
public function setConfigToken($configToken)
361+
{
362+
$this->configToken = $configToken;
363+
364+
return $this;
365+
}
366+
367+
/**
368+
* @return bool
369+
*/
370+
public function isGuest()
371+
{
372+
return $this->guest;
373+
}
374+
375+
/**
376+
* @param bool $guest
377+
*
378+
* @return JoinMeetingParameters
379+
*/
380+
public function setGuest($guest)
381+
{
382+
$this->guest = $guest;
383+
384+
return $this;
385+
}
386+
387+
/**
388+
* @return string
389+
*/
390+
public function getDefaultLayout()
391+
{
392+
return $this->defaultLayout;
393+
}
394+
395+
/**
396+
* @param bool $defaultLayout
397+
*
398+
* @return JoinMeetingParameters
399+
*/
400+
public function setDefaultLayout($defaultLayout)
401+
{
402+
$this->defaultLayout = $defaultLayout;
403+
404+
return $this;
405+
}
331406

332407
/**
333408
* @param string $paramName
@@ -359,6 +434,9 @@ public function getHTTPQuery()
359434
'avatarURL' => $this->avatarURL,
360435
'redirect' => $this->redirect ? 'true' : 'false',
361436
'clientURL' => $this->clientURL,
437+
'configToken' => $this->configToken,
438+
'guest' => $this->guest ? 'true' : 'false',
439+
'defaultLayout' => $this->defaultLayout,
362440
];
363441

364442
foreach ($this->customParameters as $key => $value) {

0 commit comments

Comments
 (0)