20 lines
564 B
PHP
Executable File
20 lines
564 B
PHP
Executable File
<?php
|
|
namespace Magento\Quote\Api\Data;
|
|
|
|
/**
|
|
* ExtensionInterface class for @see \Magento\Quote\Api\Data\TotalSegmentInterface
|
|
*/
|
|
interface TotalSegmentExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface
|
|
{
|
|
/**
|
|
* @return \Magento\Tax\Api\Data\GrandTotalDetailsInterface[]|null
|
|
*/
|
|
public function getTaxGrandtotalDetails();
|
|
|
|
/**
|
|
* @param \Magento\Tax\Api\Data\GrandTotalDetailsInterface[] $taxGrandtotalDetails
|
|
* @return $this
|
|
*/
|
|
public function setTaxGrandtotalDetails($taxGrandtotalDetails);
|
|
}
|