12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Rest\Response\Document;
- /**
- * Temando API Get Carrier Integration Collection Document
- *
- * @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/
- */
- interface GetCarrierIntegrationsInterface
- {
- /**
- * Obtain response entities
- *
- * @return \Temando\Shipping\Rest\Response\DataObject\CarrierIntegration[]
- */
- public function getData();
- /**
- * Set response entities
- *
- * @param \Temando\Shipping\Rest\Response\DataObject\CarrierIntegration[] $integrations
- * @return void
- */
- public function setData(array $integrations);
- }
|