* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class Experience { /** * @var string */ private $id; /** * @var string */ private $type; /** * @var \Temando\Shipping\Rest\Response\Fields\ExperienceAttributes */ private $attributes; /** * @return int */ public function getId() { return $this->id; } /** * @param $id $id * @return void */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getType() { return $this->type; } /** * @param string $type * @return void */ public function setType($type) { $this->type = $type; } /** * @return \Temando\Shipping\Rest\Response\Fields\ExperienceAttributes */ public function getAttributes() { return $this->attributes; } /** * @param \Temando\Shipping\Rest\Response\Fields\ExperienceAttributes $attributes * @return void */ public function setAttributes(ExperienceAttributes $attributes) { $this->attributes = $attributes; } }