20 lines
		
	
	
		
			550 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			550 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
namespace Magento\Quote\Api\Data;
 | 
						|
 | 
						|
/**
 | 
						|
 * ExtensionInterface class for @see \Magento\Quote\Api\Data\CartInterface
 | 
						|
 */
 | 
						|
interface CartExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @return \Magento\Quote\Api\Data\ShippingAssignmentInterface[]|null
 | 
						|
     */
 | 
						|
    public function getShippingAssignments();
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param \Magento\Quote\Api\Data\ShippingAssignmentInterface[] $shippingAssignments
 | 
						|
     * @return $this
 | 
						|
     */
 | 
						|
    public function setShippingAssignments($shippingAssignments);
 | 
						|
}
 |