@@ -379,150 +379,31 @@ public function __construct(string $meetingID, string $name)
379379 }
380380
381381 /**
382- * @deprecated use getName()
383- * @return string
384- */
385- public function getMeetingName ()
386- {
387- return $ this ->name ;
388- }
389-
390- /**
391- * @deprecated use setName()
392- * @return static
393- */
394- public function setMeetingName (string $ name ): self
395- {
396- $ this ->name = $ name ;
397-
398- return $ this ;
399- }
400-
401- /**
402- * @deprecated use getMeetingID()
403- * @return string
404- */
405- public function getMeetingId ()
406- {
407- return $ this ->meetingID ;
408- }
409-
410- /**
411- * @deprecated use setMeetingID()
412382 * @return CreateMeetingParameters
413383 */
414- public function setMeetingId (string $ meetingID )
415- {
416- $ this ->meetingID = $ meetingID ;
417-
418- return $ this ;
419- }
420-
421- /**
422- * @deprecated use getAttendeePW()
423- * @return string
424- */
425- public function getAttendeePassword ()
426- {
427- return $ this ->attendeePW ;
428- }
429-
430- /**
431- * @deprecated use setAttendeePW()
432- * @return static
433- */
434- public function setAttendeePassword (string $ password ): self
435- {
436- $ this ->attendeePW = $ password ;
437-
438- return $ this ;
439- }
440-
441- /**
442- * @deprecated use getModeratorPW()
443- * @return string
444- */
445- public function getModeratorPassword ()
446- {
447- return $ this ->moderatorPW ;
448- }
449-
450- /**
451- * @deprecated use setModeratorPW()
452- * @return static
453- */
454- public function setModeratorPassword (string $ password ): self
455- {
456- $ this ->moderatorPW = $ password ;
457-
458- return $ this ;
459- }
460-
461- /**
462- * @deprecated use getWelcome()
463- * @return string
464- */
465- public function getWelcomeMessage ()
466- {
467- return $ this ->welcome ;
468- }
469-
470- /**
471- * @deprecated use setWelcome()
472- * @return CreateMeetingParameters
473- */
474- public function setWelcomeMessage (string $ welcome )
475- {
476- $ this ->welcome = $ welcome ;
477-
478- return $ this ;
479- }
480-
481- /**
482- * @deprecated use getLogoutURL()
483- * @return string
484- */
485- public function getLogoutUrl ()
486- {
487- return $ this ->logoutURL ;
488- }
489-
490- /**
491- * @deprecated use setLogoutURL()
492- * @return CreateMeetingParameters
493- */
494- public function setLogoutUrl (string $ logoutUrl )
384+ public function setEndCallbackUrl (string $ endCallbackUrl )
495385 {
496- $ this ->logoutURL = $ logoutUrl ;
386+ $ this ->addMeta ( ' endCallbackUrl ' , $ endCallbackUrl ) ;
497387
498388 return $ this ;
499389 }
500390
501- /**
502- * @deprecated use isRecord()
503- * @return bool
504- */
505- public function isRecorded ()
506- {
507- return $ this ->record ;
508- }
509-
510391 /**
511392 * @return CreateMeetingParameters
512393 */
513- public function setEndCallbackUrl (string $ endCallbackUrl )
394+ public function setRecordingReadyCallbackUrl (string $ recordingReadyCallbackUrl )
514395 {
515- $ this ->addMeta ('endCallbackUrl ' , $ endCallbackUrl );
396+ $ this ->addMeta ('bbb-recording-ready-url ' , $ recordingReadyCallbackUrl );
516397
517398 return $ this ;
518399 }
519400
520401 /**
521402 * @return CreateMeetingParameters
522403 */
523- public function setRecordingReadyCallbackUrl ( string $ recordingReadyCallbackUrl )
404+ public function setBreakout ( bool $ isBreakout )
524405 {
525- $ this ->addMeta ( ' bbb-recording-ready-url ' , $ recordingReadyCallbackUrl ) ;
406+ $ this ->isBreakout = $ isBreakout ;
526407
527408 return $ this ;
528409 }
@@ -553,37 +434,6 @@ public function disableUserCameraCap(): self
553434 return $ this ;
554435 }
555436
556- /**
557- * @return CreateMeetingParameters
558- */
559- public function setBreakout (bool $ isBreakout )
560- {
561- $ this ->isBreakout = $ isBreakout ;
562-
563- return $ this ;
564- }
565-
566- /**
567- * @deprecated use getParentMeetingID()
568- * @return string
569- */
570- public function getParentMeetingId ()
571- {
572- return $ this ->parentMeetingID ;
573- }
574-
575- /**
576- * @deprecated use setParentMeetingID()
577- *
578- * @return CreateMeetingParameters
579- */
580- public function setParentMeetingId (string $ parentMeetingID )
581- {
582- $ this ->parentMeetingID = $ parentMeetingID ;
583-
584- return $ this ;
585- }
586-
587437 /**
588438 * @return bool
589439 */
0 commit comments