* @author Christoph Aßmann * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link http://www.temando.com/ */ class Documentation extends DataObject implements DocumentationInterface { /** * @return string */ public function getDocumentationId() { return $this->getData(self::DOCUMENTATION_ID); } /** * @return string */ public function getName() { return $this->getData(self::NAME); } /** * @return string */ public function getType() { return $this->getData(self::TYPE); } /** * @return string */ public function getSize() { return $this->getData(self::SIZE); } /** * @return string */ public function getMimeType() { return $this->getData(self::MIME_TYPE); } /** * @return string */ public function getUrl() { return $this->getData(self::URL); } }