123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Rest\Response\Fields;
- /**
- * Temando API Carrier Configuration 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 CarrierIntegrationAttributes
- {
- /**
- * @var string
- */
- private $name;
- /**
- * @var string
- */
- private $description;
- /**
- * @var string
- */
- private $logo;
- /**
- * @var \Temando\Shipping\Rest\Response\Fields\CarrierIntegration\Service[]
- */
- private $services = [];
- /**
- * @return string
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * @param string $name
- * @return void
- */
- public function setName($name)
- {
- $this->name = $name;
- }
- /**
- * @return string
- */
- public function getDescription()
- {
- return $this->description;
- }
- /**
- * @param string $description
- * @return void
- */
- public function setDescription($description)
- {
- $this->description = $description;
- }
- /**
- * @return string
- */
- public function getLogo()
- {
- return $this->logo;
- }
- /**
- * @param string $logo
- * @return void
- */
- public function setLogo($logo)
- {
- $this->logo = $logo;
- }
- /**
- * @return \Temando\Shipping\Rest\Response\Fields\CarrierIntegration\Service[]
- */
- public function getServices()
- {
- return $this->services;
- }
- /**
- * @param \Temando\Shipping\Rest\Response\Fields\CarrierIntegration\Service[] $services
- * @return void
- */
- public function setServices(array $services)
- {
- $this->services = $services;
- }
- }
|