123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\AsynchronousOperations\Api\Data;
- /**
- * Bulk operation search result interface.
- *
- * An bulk is a group of queue messages. An bulk operation item is a queue message.
- * @api
- * @since 100.3.0
- */
- interface OperationSearchResultsInterface extends \Magento\Framework\Api\SearchResultsInterface
- {
- /**
- * Get list of operations.
- *
- * @return \Magento\AsynchronousOperations\Api\Data\OperationInterface[]
- * @since 100.3.0
- */
- public function getItems();
- /**
- * Set list of operations.
- *
- * @param \Magento\AsynchronousOperations\Api\Data\OperationInterface[] $items
- * @return $this
- * @since 100.3.0
- */
- public function setItems(array $items);
- }
|