1 | <?php |
||
6 | class Download implements RequestInterface |
||
7 | { |
||
8 | /** @var int */ |
||
9 | private $classroomId; |
||
10 | |||
11 | private $recordingFormat; |
||
12 | |||
13 | public function __construct($classroomId, $recordingFormat) |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function getMethod() |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function getParams() |
||
38 | } |
||
39 |