1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* BigBlueButton open source conferencing system - https://www.bigbluebutton.org/. |
5
|
|
|
* |
6
|
|
|
* Copyright (c) 2016-2023 BigBlueButton Inc. and by respective authors (see below). |
7
|
|
|
* |
8
|
|
|
* This program is free software; you can redistribute it and/or modify it under the |
9
|
|
|
* terms of the GNU Lesser General Public License as published by the Free Software |
10
|
|
|
* Foundation; either version 3.0 of the License, or (at your option) any later |
11
|
|
|
* version. |
12
|
|
|
* |
13
|
|
|
* BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY |
14
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
15
|
|
|
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
16
|
|
|
* |
17
|
|
|
* You should have received a copy of the GNU Lesser General Public License along |
18
|
|
|
* with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. |
19
|
|
|
*/ |
20
|
|
|
|
21
|
|
|
namespace BigBlueButton\Parameters; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* Class EndMeetingParameters. |
25
|
|
|
*/ |
26
|
|
|
class InsertDocumentParameters extends BaseParameters |
27
|
|
|
{ |
28
|
|
|
use DocumentableTrait; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* EndMeetingParameters constructor. |
32
|
|
|
* |
33
|
|
|
* @param string $meetingId |
34
|
|
|
*/ |
35
|
|
|
public function __construct($meetingId) |
36
|
|
|
{ |
37
|
|
|
$this->meetingId = $meetingId; |
|
|
|
|
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* @return string |
42
|
|
|
*/ |
43
|
|
|
public function getMeetingId() |
44
|
|
|
{ |
45
|
|
|
return $this->meetingId; |
46
|
|
|
} |
47
|
|
|
|
48
|
|
|
/** |
49
|
|
|
* @param string $meetingId |
50
|
|
|
* |
51
|
|
|
* @return EndMeetingParameters |
52
|
|
|
*/ |
53
|
|
|
public function setMeetingId($meetingId) |
54
|
|
|
{ |
55
|
|
|
$this->meetingId = $meetingId; |
|
|
|
|
56
|
|
|
|
57
|
|
|
return $this; |
|
|
|
|
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* @return string |
62
|
|
|
*/ |
63
|
|
|
public function getHTTPQuery() |
64
|
|
|
{ |
65
|
|
|
return $this->buildHTTPQuery( |
66
|
|
|
[ |
67
|
|
|
'meetingID' => $this->meetingId, |
68
|
|
|
] |
69
|
|
|
); |
70
|
|
|
} |
71
|
|
|
} |
72
|
|
|
|