CarrierIntegration.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Rest\Response\DataObject;
  6. /**
  7. * Temando API Carrier Integration Resource Object
  8. *
  9. * @package Temando\Shipping\Rest
  10. * @author Christoph Aßmann <christoph.assmann@netresearch.de>
  11. * @author Sebastian Ertner <sebastian.ertner@netresearch.de>
  12. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  13. * @link http://www.temando.com/
  14. */
  15. class CarrierIntegration extends AbstractResource
  16. {
  17. /**
  18. * @var \Temando\Shipping\Rest\Response\Fields\CarrierIntegrationAttributes
  19. */
  20. private $attributes;
  21. /**
  22. * @return \Temando\Shipping\Rest\Response\Fields\CarrierIntegrationAttributes
  23. */
  24. public function getAttributes()
  25. {
  26. return $this->attributes;
  27. }
  28. /**
  29. * @param \Temando\Shipping\Rest\Response\Fields\CarrierIntegrationAttributes $attributes
  30. * @return void
  31. */
  32. public function setAttributes($attributes)
  33. {
  34. $this->attributes = $attributes;
  35. }
  36. }