DetailedBulkOperationsStatusInterface.php 898 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\AsynchronousOperations\Api\Data;
  8. /**
  9. * Interface BulkStatusInterface
  10. *
  11. * Bulk summary data with list of operations items full data.
  12. *
  13. * @api
  14. * @since 100.2.3
  15. */
  16. interface DetailedBulkOperationsStatusInterface extends BulkSummaryInterface
  17. {
  18. const OPERATIONS_LIST = 'operations_list';
  19. /**
  20. * Retrieve operations list.
  21. *
  22. * @return \Magento\AsynchronousOperations\Api\Data\OperationInterface[]
  23. * @since 100.2.3
  24. */
  25. public function getOperationsList();
  26. /**
  27. * Set operations list.
  28. *
  29. * @param \Magento\AsynchronousOperations\Api\Data\OperationInterface[] $operationStatusList
  30. * @return $this
  31. * @since 100.2.3
  32. */
  33. public function setOperationsList($operationStatusList);
  34. }