![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-asynchronous-operations/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\AsynchronousOperations\Model; use Magento\AsynchronousOperations\Api\Data\AsyncResponseInterface; use Magento\Framework\DataObject; use Magento\Framework\Api\ExtensibleDataInterface; class AsyncResponse extends DataObject implements AsyncResponseInterface, ExtensibleDataInterface { /** * @inheritDoc */ public function getBulkUuid() { return $this->getData(self::BULK_UUID); } /** * @inheritDoc */ public function setBulkUuid($bulkUuid) { return $this->setData(self::BULK_UUID, $bulkUuid); } /** * @inheritDoc */ public function getRequestItems() { return $this->getData(self::REQUEST_ITEMS); } /** * @inheritDoc */ public function setRequestItems($requestItems) { return $this->setData(self::REQUEST_ITEMS, $requestItems); } /** * @inheritdoc */ public function setErrors($isErrors = false) { return $this->setData(self::ERRORS, $isErrors); } /** * @inheritdoc */ public function isErrors() { return $this->getData(self::ERRORS); } /** * @inheritDoc */ public function getExtensionAttributes() { return $this->getData(self::EXTENSION_ATTRIBUTES_KEY); } /** * @inheritDoc */ public function setExtensionAttributes( \Magento\AsynchronousOperations\Api\Data\AsyncResponseExtensionInterface $extensionAttributes ) { return $this->setData(self::EXTENSION_ATTRIBUTES_KEY, $extensionAttributes); } }