1 | <?php |
||
24 | class JoinMeetingParameters extends BaseParameters |
||
25 | { |
||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | private $meetingId; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | private $username; |
||
35 | |||
36 | /** |
||
37 | * @var string |
||
38 | */ |
||
39 | private $password; |
||
40 | |||
41 | /** |
||
42 | * @var string |
||
43 | */ |
||
44 | private $userId; |
||
45 | |||
46 | /** |
||
47 | * @var string |
||
48 | */ |
||
49 | private $webVoiceConf; |
||
50 | |||
51 | /** |
||
52 | * @var string |
||
53 | */ |
||
54 | private $creationTime; |
||
55 | |||
56 | /** |
||
57 | * @var string |
||
58 | */ |
||
59 | private $configToken; |
||
60 | |||
61 | /** |
||
62 | * @var string |
||
63 | */ |
||
64 | private $avatarURL; |
||
65 | |||
66 | /** |
||
67 | * @var boolean |
||
68 | */ |
||
69 | private $redirect; |
||
70 | |||
71 | /** |
||
72 | * @var |
||
73 | */ |
||
74 | private $clientURL; |
||
75 | |||
76 | /** |
||
77 | * JoinMeetingParametersTest constructor. |
||
78 | * |
||
79 | * @param $meetingId |
||
80 | * @param $username |
||
81 | * @param $password |
||
82 | */ |
||
83 | public function __construct($meetingId, $username, $password) |
||
89 | |||
90 | /** |
||
91 | * @return string |
||
92 | */ |
||
93 | public function getMeetingId() |
||
97 | |||
98 | /** |
||
99 | * @param string $meetingId |
||
100 | * |
||
101 | * @return JoinMeetingParameters |
||
102 | */ |
||
103 | public function setMeetingId($meetingId) |
||
109 | |||
110 | /** |
||
111 | * @return string |
||
112 | */ |
||
113 | public function getUsername() |
||
117 | |||
118 | /** |
||
119 | * @param string $username |
||
120 | * |
||
121 | * @return JoinMeetingParameters |
||
122 | */ |
||
123 | public function setUsername($username) |
||
129 | |||
130 | /** |
||
131 | * @return string |
||
132 | */ |
||
133 | public function getPassword() |
||
137 | |||
138 | /** |
||
139 | * @param string $password |
||
140 | * |
||
141 | * @return JoinMeetingParameters |
||
142 | */ |
||
143 | public function setPassword($password) |
||
149 | |||
150 | /** |
||
151 | * @return string |
||
152 | */ |
||
153 | public function getUserId() |
||
157 | |||
158 | /** |
||
159 | * @param string $userId |
||
160 | * |
||
161 | * @return JoinMeetingParameters |
||
162 | */ |
||
163 | public function setUserId($userId) |
||
169 | |||
170 | /** |
||
171 | * @return string |
||
172 | */ |
||
173 | public function getWebVoiceConf() |
||
177 | |||
178 | /** |
||
179 | * @param string $webVoiceConf |
||
180 | * |
||
181 | * @return JoinMeetingParameters |
||
182 | */ |
||
183 | public function setWebVoiceConf($webVoiceConf) |
||
189 | |||
190 | /** |
||
191 | * @return int |
||
192 | */ |
||
193 | public function getCreationTime() |
||
197 | |||
198 | /** |
||
199 | * @param int $creationTime |
||
200 | * |
||
201 | * @return JoinMeetingParameters |
||
202 | */ |
||
203 | public function setCreationTime($creationTime) |
||
209 | |||
210 | /** |
||
211 | * @return string |
||
212 | */ |
||
213 | public function getConfigToken() |
||
217 | |||
218 | /** |
||
219 | * @param string $configToken |
||
220 | * @return JoinMeetingParameters |
||
221 | */ |
||
222 | public function setConfigToken($configToken) |
||
228 | |||
229 | /** |
||
230 | * @return string |
||
231 | */ |
||
232 | public function getAvatarURL() |
||
236 | |||
237 | /** |
||
238 | * @param string $avatarURL |
||
239 | * @return JoinMeetingParameters |
||
240 | */ |
||
241 | public function setAvatarURL($avatarURL) |
||
247 | |||
248 | /** |
||
249 | * @return mixed |
||
250 | */ |
||
251 | public function isRedirect() |
||
252 | { |
||
253 | return $this->redirect; |
||
254 | } |
||
255 | |||
256 | /** |
||
257 | * @param mixed $redirect |
||
258 | * @return JoinMeetingParameters |
||
259 | */ |
||
260 | public function setRedirect($redirect) |
||
266 | |||
267 | /** |
||
268 | * @return mixed |
||
269 | */ |
||
270 | public function getClientURL() |
||
274 | |||
275 | /** |
||
276 | * @param mixed $clientURL |
||
277 | * @return JoinMeetingParameters |
||
278 | */ |
||
279 | public function setClientURL($clientURL) |
||
285 | |||
286 | /** |
||
287 | * @return string |
||
288 | */ |
||
289 | public function getHTTPQuery() |
||
306 | } |
||
307 |
This check looks for assignments to scalar types that may be of the wrong type.
To ensure the code behaves as expected, it may be a good idea to add an explicit type cast.