OperationListInterface.php 495 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\AsynchronousOperations\Api\Data;
  7. /**
  8. * List of bulk operations. Used for mass save of operations via entity manager.
  9. * @api
  10. * @since 100.2.0
  11. */
  12. interface OperationListInterface
  13. {
  14. /**
  15. * Get list of operations.
  16. *
  17. * @return \Magento\AsynchronousOperations\Api\Data\OperationInterface[]
  18. * @since 100.2.0
  19. */
  20. public function getItems();
  21. }