1 | <?php |
||
25 | class GetRecordingsParameters extends BaseParameters |
||
26 | { |
||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | private $meetingId; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | private $recordId; |
||
36 | |||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | private $state; |
||
41 | |||
42 | /** |
||
43 | * @var string |
||
44 | */ |
||
45 | private $meta; |
||
46 | |||
47 | /** |
||
48 | * @return string |
||
49 | */ |
||
50 | public function getMeetingId() |
||
54 | |||
55 | /** |
||
56 | * @param string $meetingId |
||
57 | * @return GetRecordingsParameters |
||
58 | */ |
||
59 | public function setMeetingId($meetingId) |
||
65 | |||
66 | /** |
||
67 | * @return string |
||
68 | */ |
||
69 | public function getRecordId() |
||
73 | |||
74 | /** |
||
75 | * @param string $recordId |
||
76 | * @return GetRecordingsParameters |
||
77 | */ |
||
78 | public function setRecordId($recordId) |
||
84 | |||
85 | /** |
||
86 | * @return string |
||
87 | */ |
||
88 | public function getState() |
||
92 | |||
93 | /** |
||
94 | * @param string $state |
||
95 | * @return GetRecordingsParameters |
||
96 | */ |
||
97 | public function setState($state) |
||
103 | |||
104 | /** |
||
105 | * @return string |
||
106 | */ |
||
107 | public function getMeta() |
||
111 | |||
112 | /** |
||
113 | * @param string $meta |
||
114 | * @return GetRecordingsParameters |
||
115 | */ |
||
116 | public function setMeta($meta) |
||
122 | |||
123 | /** |
||
124 | * @return string |
||
125 | */ |
||
126 | public function getHTTPQuery() |
||
137 | } |
||
138 |