![]() 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/Ecombricks/InventoryCatalog/Api/Data/Product/ |
<?php /** * Copyright © eComBricks. All rights reserved. * See LICENSE.txt for license details. */ namespace Ecombricks\InventoryCatalog\Api\Data\Product; /** * Product source quote interface */ interface SourceQuoteInterface { /** * Source code */ const KEY_SOURCE_CODE = 'source_code'; /** * Shipping method */ const KEY_SHIPPING_METHOD = 'shipping_method'; /** * Shipping rates */ const KEY_SHIPPING_RATES = 'shipping_rates'; /** * Totals */ const KEY_TOTALS = 'totals'; /** * Get source code * * @return string */ public function getSourceCode(); /** * Set source code * * @param string $sourceCode * @return $this */ public function setSourceCode($sourceCode); /** * Get shipping method * * @return string */ public function getShippingMethod(); /** * Set shipping method * * @param string $shippingMethod * @return $this */ public function setShippingMethod($shippingMethod); /** * Get shipping rates * * @return \Ecombricks\InventoryQuote\Api\Data\ShippingMethodInterface[] */ public function getShippingRates(); /** * Set shipping rates * * @param \Ecombricks\InventoryQuote\Api\Data\ShippingMethodInterface[] $shippingRates * @return $this */ public function setShippingRates($shippingRates); /** * Get totals * * @return \Magento\Quote\Api\Data\TotalsInterface */ public function getTotals(); /** * Set totals * * @param \Magento\Quote\Api\Data\TotalsInterface $totals * @return $this */ public function setTotals($totals); }