* @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; } }