123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Catalog\Api\Data;
- /**
- * Cost interface.
- * @api
- * @since 102.0.0
- */
- interface CostInterface extends \Magento\Framework\Api\ExtensibleDataInterface
- {
- /**#@+
- * Constants
- */
- const COST = 'cost';
- const STORE_ID = 'store_id';
- const SKU = 'sku';
- /**#@-*/
- /**
- * Set cost value.
- *
- * @param float $cost
- * @return $this
- * @since 102.0.0
- */
- public function setCost($cost);
- /**
- * Get cost value.
- *
- * @return float
- * @since 102.0.0
- */
- public function getCost();
- /**
- * Set store id.
- *
- * @param int $storeId
- * @return $this
- * @since 102.0.0
- */
- public function setStoreId($storeId);
- /**
- * Get store id.
- *
- * @return int
- * @since 102.0.0
- */
- public function getStoreId();
- /**
- * Set SKU.
- *
- * @param string $sku
- * @return $this
- * @since 102.0.0
- */
- public function setSku($sku);
- /**
- * Get SKU.
- *
- * @return string
- * @since 102.0.0
- */
- public function getSku();
- /**
- * Retrieve existing extension attributes object or create a new one.
- *
- * @return \Magento\Catalog\Api\Data\CostExtensionInterface|null
- * @since 102.0.0
- */
- public function getExtensionAttributes();
- /**
- * Set an extension attributes object.
- *
- * @param \Magento\Catalog\Api\Data\CostExtensionInterface $extensionAttributes
- * @return $this
- * @since 102.0.0
- */
- public function setExtensionAttributes(
- \Magento\Catalog\Api\Data\CostExtensionInterface $extensionAttributes
- );
- }
|