@@ -46,8 +46,6 @@ class JoinMeetingParameters extends UserDataParameters
4646
4747 private ?bool $ redirect = null ;
4848
49- private ?string $ clientURL = null ;
50-
5149 /**
5250 * @var array<string, string>
5351 */
@@ -57,8 +55,6 @@ class JoinMeetingParameters extends UserDataParameters
5755
5856 private ?bool $ excludeFromDashboard = null ;
5957
60- private ?string $ configToken = null ;
61-
6258 private ?bool $ guest = null ;
6359
6460 private ?string $ defaultLayout = null ;
@@ -183,18 +179,6 @@ public function setRedirect(bool $redirect): self
183179 return $ this ;
184180 }
185181
186- public function getClientURL (): ?string
187- {
188- return $ this ->clientURL ;
189- }
190-
191- public function setClientURL (?string $ clientURL ): self
192- {
193- $ this ->clientURL = $ clientURL ;
194-
195- return $ this ;
196- }
197-
198182 public function getRole (): ?string
199183 {
200184 return $ this ->role ;
@@ -219,18 +203,6 @@ public function setExcludeFromDashboard(bool $excludeFromDashboard): self
219203 return $ this ;
220204 }
221205
222- public function getConfigToken (): ?string
223- {
224- return $ this ->configToken ;
225- }
226-
227- public function setConfigToken (string $ configToken ): self
228- {
229- $ this ->configToken = $ configToken ;
230-
231- return $ this ;
232- }
233-
234206 public function isGuest (): ?bool
235207 {
236208 return $ this ->guest ;
@@ -275,8 +247,6 @@ public function getHTTPQuery(): string
275247 'excludeFromDashboard ' => !is_null ($ this ->excludeFromDashboard ) ? ($ this ->excludeFromDashboard ? 'true ' : 'false ' ) : $ this ->excludeFromDashboard ,
276248 'avatarURL ' => $ this ->avatarURL ,
277249 'redirect ' => !is_null ($ this ->redirect ) ? ($ this ->redirect ? 'true ' : 'false ' ) : $ this ->redirect ,
278- 'clientURL ' => $ this ->clientURL ,
279- 'configToken ' => $ this ->configToken ,
280250 'guest ' => !is_null ($ this ->guest ) ? ($ this ->guest ? 'true ' : 'false ' ) : $ this ->guest ,
281251 'defaultLayout ' => $ this ->defaultLayout ,
282252 ];
0 commit comments