20 lines
428 B
PHP
Executable File
20 lines
428 B
PHP
Executable File
<?php
|
|
namespace Magento\Quote\Api\Data;
|
|
|
|
/**
|
|
* ExtensionInterface class for @see \Magento\Quote\Api\Data\TotalsInterface
|
|
*/
|
|
interface TotalsExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface
|
|
{
|
|
/**
|
|
* @return string|null
|
|
*/
|
|
public function getCouponLabel();
|
|
|
|
/**
|
|
* @param string $couponLabel
|
|
* @return $this
|
|
*/
|
|
public function setCouponLabel($couponLabel);
|
|
}
|