Magento – How to override shipping API interface in Magento2

apiinterfacemagento2overrides

I need to override below two core file of vendor folder :

vendor/magento/module-quote/Api/Data/ShippingMethodInterface.php

vendor/magento/module-quote/Model/Cart/ShippingMethod.php

file to my code folder.

Best Answer

vendor/magento/module-quote/Api/Data/ShippingMethodInterface.php is already override magento quote model.

<preference for="Magento\Quote\Api\Data\ShippingMethodInterface" 
type="Magento\Quote\Model\Cart\ShippingMethod" />

So you should Override the class Magento\Quote\Model\Cart\ShippingMethod

Not ShippingMethodInterface.

Related Topic