12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Rest\Response\Fields;
- /**
- * Temando API Stream Event Resource Object Attributes
- *
- * @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 StreamEventAttributes
- {
- /**
- * @var string
- */
- private $event;
- /**
- * @var string
- */
- private $type;
- /**
- * @var string
- */
- private $id;
- /**
- * @return string
- */
- public function getEvent()
- {
- return $this->event;
- }
- /**
- * @param string $event
- * @return void
- */
- public function setEvent($event)
- {
- $this->event = $event;
- }
- /**
- * @return string
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * @param string $type
- * @return void
- */
- public function setType($type)
- {
- $this->type = $type;
- }
- /**
- * @return string
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * @param string $id
- * @return void
- */
- public function setId($id)
- {
- $this->id = $id;
- }
- }
|