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 Experiences Operation
- *
- * @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 GetExperiencesInterface
- {
- /**
- * Obtain response entities
- *
- * @return \Temando\Shipping\Rest\Response\DataObject\Experience[]
- */
- public function getData();
- /**
- * Set response entities
- *
- * @param \Temando\Shipping\Rest\Response\DataObject\Experience[] $experiences
- * @return void
- */
- public function setData(array $experiences);
- }
|