* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class Location extends AbstractResource { /** * @var \Temando\Shipping\Rest\Response\Fields\LocationAttributes */ private $attributes; /** * @return \Temando\Shipping\Rest\Response\Fields\LocationAttributes */ public function getAttributes() { return $this->attributes; } /** * @param \Temando\Shipping\Rest\Response\Fields\LocationAttributes $attributes * @return void */ public function setAttributes(LocationAttributes $attributes) { $this->attributes = $attributes; } }