![]() 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/generated/code/Magento/Catalog/Api/Data/ |
<?php namespace Magento\Catalog\Api\Data; /** * ExtensionInterface class for @see \Magento\Catalog\Api\Data\ProductOptionInterface */ interface ProductOptionExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface { /** * @return \Magento\Catalog\Api\Data\CustomOptionInterface[]|null */ public function getCustomOptions(); /** * @param \Magento\Catalog\Api\Data\CustomOptionInterface[] $customOptions * @return $this */ public function setCustomOptions($customOptions); /** * @return \Magento\Downloadable\Api\Data\DownloadableOptionInterface|null */ public function getDownloadableOption(); /** * @param \Magento\Downloadable\Api\Data\DownloadableOptionInterface $downloadableOption * @return $this */ public function setDownloadableOption(\Magento\Downloadable\Api\Data\DownloadableOptionInterface $downloadableOption); /** * @return \Magento\Bundle\Api\Data\BundleOptionInterface[]|null */ public function getBundleOptions(); /** * @param \Magento\Bundle\Api\Data\BundleOptionInterface[] $bundleOptions * @return $this */ public function setBundleOptions($bundleOptions); /** * @return \Magento\ConfigurableProduct\Api\Data\ConfigurableItemOptionValueInterface[]|null */ public function getConfigurableItemOptions(); /** * @param \Magento\ConfigurableProduct\Api\Data\ConfigurableItemOptionValueInterface[] $configurableItemOptions * @return $this */ public function setConfigurableItemOptions($configurableItemOptions); }