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); } }