4141 * @method $this setWebVoice(string $webVoice)
4242 * @method int getMaxParticipants()
4343 * @method $this setMaxParticipants(int $maxParticipants)
44+ * @method string getLoginURL()
45+ * @method $this setLoginURL(string $loginURL)
4446 * @method string getLogoutURL()
4547 * @method $this setLogoutURL(string $logoutURL)
4648 * @method bool|null isRecord()
147149 * @method $this setPreUploadedPresentation(string $preUploadedPresentation)
148150 * @method string getPreUploadedPresentationName()
149151 * @method $this setPreUploadedPresentationName(string $preUploadedPresentationName)
152+ * @method int|null getMaxNumPages()
153+ * @method $this setMaxNumPages(int $maxNumPages)
154+ * @method string getPluginManifests()
155+ * @method $this setPluginManifests(string $pluginManifests)
156+ * @method string getPluginManifestsFetchUrl()
157+ * @method $this setPluginManifestsFetchUrl(string $pluginManifestsFetchUrl)
158+ * @method bool|null isPresentationConversionCacheEnabled()
159+ * @method $this setPresentationConversionCacheEnabled(bool $presentationConversionCacheEnabled)
150160 */
151161class CreateMeetingParameters extends MetaParameters
152162{
@@ -155,6 +165,7 @@ class CreateMeetingParameters extends MetaParameters
155165 protected ?int $ voiceBridge = null ;
156166 protected ?string $ webVoice = null ;
157167 protected ?int $ maxParticipants = null ;
168+ protected ?string $ loginURL = null ;
158169 protected ?string $ logoutURL = null ;
159170 protected ?bool $ record = null ;
160171 protected ?int $ duration = null ;
@@ -224,6 +235,10 @@ class CreateMeetingParameters extends MetaParameters
224235 protected ?bool $ recordFullDurationMedia = null ;
225236 protected ?string $ presentationUploadExternalUrl = null ;
226237 protected ?string $ presentationUploadExternalDescription = null ;
238+ protected ?int $ maxNumPages = null ;
239+ protected ?string $ pluginManifests = null ;
240+ protected ?string $ pluginManifestsFetchUrl = null ;
241+ protected ?bool $ presentationConversionCacheEnabled = null ;
227242
228243 /**
229244 * @var array<string,string>
0 commit comments