for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace mikemix\Wiziq\API\Request;
use mikemix\Wiziq\Common\Api\RequestInterface;
class Download implements RequestInterface
{
/** @var int */
private $classroomId;
private $recordingFormat;
public function __construct($classroomId, $recordingFormat)
$this->classroomId = $classroomId;
$this->recordingFormat = $recordingFormat;
}
/**
* {@inheritdoc}
*/
public function getMethod()
return 'download_recording';
public function getParams()
return [
'class_id' => $this->classroomId,
'recording_format' => $this->recordingFormat
];