123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Rest\Response\Fields\Generic;
- /**
- * Temando API Documentation Field
- *
- * @package Temando\Shipping\Rest
- * @author Christoph Aßmann <christoph.assmann@netresearch.de>
- * @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;
- }
- }
|