* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class Documentation { /** * @var string */ private $size; /** * @var string */ private $description; /** * @var string */ private $id; /** * @var string */ private $mimeType; /** * @var string */ private $encoding; /** * @var string */ private $type; /** * @var string */ private $url; /** * @return string */ public function getSize() { return $this->size; } /** * @param string $size * @return void */ public function setSize($size) { $this->size = $size; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string $description * @return void */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getId() { return $this->id; } /** * @param string $id * @return void */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getMimeType() { return $this->mimeType; } /** * @param string $mimeType * @return void */ public function setMimeType($mimeType) { $this->mimeType = $mimeType; } /** * @return string */ public function getEncoding() { return $this->encoding; } /** * @param string $encoding * @return void */ public function setEncoding($encoding) { $this->encoding = $encoding; } /** * @return string */ public function getType() { return $this->type; } /** * @param string $type * @return void */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getUrl() { return $this->url; } /** * @param string $url * @return void */ public function setUrl($url) { $this->url = $url; } }