9393 * @method $this setEndWhenNoModerator(bool $isEndWhenNoModerator)
9494 * @method int getEndWhenNoModeratorDelayInMinutes()
9595 * @method $this setEndWhenNoModeratorDelayInMinutes(int $endWhenNoModeratorDelayInMinutes)
96+ * @method string getMeetingLayout()
97+ * @method $this setMeetingLayout(string $meetingLayout)
98+ * @method bool|null isLearningDashboardEnabled()
99+ * @method $this setLearningDashboardEnabled(bool $isLearningDashboardEnabled)
100+ * @method int getLearningDashboardCleanupDelayInMinutes()
101+ * @method $this setLearningDashboardCleanupDelayInMinutes(int $learningDashboardCleanupDelayInMinutes)
102+ * @method bool|null isAllowModsToEjectCameras()
103+ * @method $this setAllowModsToEjectCameras(bool $isAllowModsToEjectCameras)
96104 *
97105 */
98106class CreateMeetingParameters extends MetaParameters
@@ -102,6 +110,11 @@ class CreateMeetingParameters extends MetaParameters
102110 const ASK_MODERATOR = 'ASK_MODERATOR ' ;
103111 const ALWAYS_ACCEPT_AUTH = 'ALWAYS_ACCEPT_AUTH ' ;
104112
113+ const CUSTOM_LAYOUT = 'CUSTOM_LAYOUT ' ;
114+ const SMART_LAYOUT = 'SMART_LAYOUT ' ;
115+ const PRESENTATION_FOCUS = 'PRESENTATION_FOCUS ' ;
116+ const VIDEO_FOCUS = 'VIDEO_FOCUS ' ;
117+
105118 /**
106119 * @var string
107120 */
@@ -307,6 +320,26 @@ class CreateMeetingParameters extends MetaParameters
307320 */
308321 protected $ endWhenNoModeratorDelayInMinutes ;
309322
323+ /**
324+ * @var string
325+ */
326+ protected $ meetingLayout ;
327+
328+ /**
329+ * @var bool
330+ */
331+ protected $ learningDashboardEnabled ;
332+
333+ /**
334+ * @var int
335+ */
336+ protected $ learningDashboardCleanupDelayInMinutes ;
337+
338+ /**
339+ * @var bool
340+ */
341+ protected $ allowModsToEjectCameras ;
342+
310343 /**
311344 * @var array
312345 */
0 commit comments