for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the XabbuhPandaClient package.
*
* (c) Christian Flothmann <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Xabbuh\PandaClient\Model;
/**
* Representation of a video as it is returned by the Panda encoding service.
* @author Christian Flothmann <[email protected]>
class Video extends AbstractMedium
{
private $originalFilename;
private $sourceUrl;
private $payload;
public function getOriginalFilename()
return $this->originalFilename;
}
public function setOriginalFilename($originalFilename)
$this->originalFilename = $originalFilename;
public function getSourceUrl()
return $this->sourceUrl;
public function setSourceUrl($sourceUrl)
$this->sourceUrl = $sourceUrl;
public function getPayload()
return $this->payload;
public function setPayload($payload)
$this->payload = $payload;