![]() 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-catalog/Api/Data/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; /** * @api * @since 100.0.2 */ interface ProductCustomOptionValuesInterface { /** * Get option title * * @return string */ public function getTitle(); /** * Set option title * * @param string $title * @return $this */ public function setTitle($title); /** * Get sort order * * @return int */ public function getSortOrder(); /** * Set sort order * * @param int $sortOrder * @return $this */ public function setSortOrder($sortOrder); /** * Get price * * @return float */ public function getPrice(); /** * Set price * * @param float $price * @return $this */ public function setPrice($price); /** * Get price type * * @return string */ public function getPriceType(); /** * Set price type * * @param string $priceType * @return $this */ public function setPriceType($priceType); /** * Get Sku * * @return string|null */ public function getSku(); /** * Set Sku * * @param string $sku * @return $this */ public function setSku($sku); /** * Get Option type id * * @return int|null */ public function getOptionTypeId(); /** * Set Option type id * * @param int $optionTypeId * @return int|null */ public function setOptionTypeId($optionTypeId); }