123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Api\Data;
- /**
- * Interface for customer address search results.
- * @api
- * @since 100.0.2
- */
- interface AddressSearchResultsInterface extends \Magento\Framework\Api\SearchResultsInterface
- {
- /**
- * Get customer addresses list.
- *
- * @return \Magento\Customer\Api\Data\AddressInterface[]
- */
- public function getItems();
- /**
- * Set customer addresses list.
- *
- * @param \Magento\Customer\Api\Data\AddressInterface[] $items
- * @return $this
- */
- public function setItems(array $items);
- }
|