diff --git a/src/Parameters/CreateMeetingParameters.php b/src/Parameters/CreateMeetingParameters.php index 02db9d60..e3480d44 100644 --- a/src/Parameters/CreateMeetingParameters.php +++ b/src/Parameters/CreateMeetingParameters.php @@ -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() @@ -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 { @@ -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; @@ -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 diff --git a/src/Parameters/JoinMeetingParameters.php b/src/Parameters/JoinMeetingParameters.php index f59de439..a95eb384 100644 --- a/src/Parameters/JoinMeetingParameters.php +++ b/src/Parameters/JoinMeetingParameters.php @@ -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 { @@ -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)