12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Catalog\Api;
- /**
- * @api
- * @since 100.0.2
- */
- interface ProductLinkManagementInterface
- {
- /**
- * Provide the list of links for a specific product
- *
- * @param string $sku
- * @param string $type
- * @return \Magento\Catalog\Api\Data\ProductLinkInterface[]
- */
- public function getLinkedItemsByType($sku, $type);
- /**
- * Assign a product link to another product
- *
- * @param string $sku
- * @param \Magento\Catalog\Api\Data\ProductLinkInterface[] $items
- * @throws \Magento\Framework\Exception\NoSuchEntityException
- * @throws \Magento\Framework\Exception\CouldNotSaveException
- * @return bool
- */
- public function setProductLinks($sku, array $items);
- }
|