Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/Parameters/CreateMeetingParameters.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
* @method $this setWebVoice(string $webVoice)
* @method int getMaxParticipants()
* @method $this setMaxParticipants(int $maxParticipants)
* @method string getLoginURL()
* @method $this setLoginURL(string $loginURL)
* @method string getLogoutURL()
* @method $this setLogoutURL(string $logoutURL)
* @method bool|null isRecord()
Expand Down Expand Up @@ -147,6 +149,14 @@
* @method $this setPreUploadedPresentation(string $preUploadedPresentation)
* @method string getPreUploadedPresentationName()
* @method $this setPreUploadedPresentationName(string $preUploadedPresentationName)
* @method int|null getMaxNumPages()
* @method $this setMaxNumPages(int $maxNumPages)
* @method string getPluginManifests()
* @method $this setPluginManifests(string $pluginManifests)
* @method string getPluginManifestsFetchUrl()
* @method $this setPluginManifestsFetchUrl(string $pluginManifestsFetchUrl)
* @method bool|null isPresentationConversionCacheEnabled()
* @method $this setPresentationConversionCacheEnabled(bool $presentationConversionCacheEnabled)
*/
class CreateMeetingParameters extends MetaParameters
{
Expand All @@ -155,6 +165,7 @@ class CreateMeetingParameters extends MetaParameters
protected ?int $voiceBridge = null;
protected ?string $webVoice = null;
protected ?int $maxParticipants = null;
protected ?string $loginURL = null;
protected ?string $logoutURL = null;
protected ?bool $record = null;
protected ?int $duration = null;
Expand Down Expand Up @@ -224,6 +235,10 @@ class CreateMeetingParameters extends MetaParameters
protected ?bool $recordFullDurationMedia = null;
protected ?string $presentationUploadExternalUrl = null;
protected ?string $presentationUploadExternalDescription = null;
protected ?int $maxNumPages = null;
protected ?string $pluginManifests = null;
protected ?string $pluginManifestsFetchUrl = null;
protected ?bool $presentationConversionCacheEnabled = null;

/**
* @var array<string,string>
Expand Down
9 changes: 9 additions & 0 deletions src/Parameters/JoinMeetingParameters.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@
* @method $this setWebcamBackgroundURL(string $webcamBackgroundURL)
* @method bool|null isBot()
* @method $this setBot(bool $bot)
* @method string getLogoutURL()
* @method $this setLogoutURL(string $logoutURL)
* @method string getFirstName()
* @method $this setFirstName(string $firstName)
* @method string getLastName()
* @method $this setLastName(string $lastName)
*/
class JoinMeetingParameters extends UserDataParameters
{
Expand All @@ -72,6 +78,9 @@ class JoinMeetingParameters extends UserDataParameters
protected ?bool $excludeFromDashboard = null;
protected ?MeetingLayout $enforceLayout = null;
protected ?string $webcamBackgroundURL = null;
protected ?string $logoutURL = null;
protected ?string $firstName = null;
protected ?string $lastName = null;
protected ?bool $bot = null;

public function __construct(protected string $meetingID, protected string $fullName, protected Role $role)
Expand Down