31 lines
744 B
PHP
Executable File
31 lines
744 B
PHP
Executable File
<?php
|
|
namespace Magento\Quote\Api\Data;
|
|
|
|
/**
|
|
* ExtensionInterface class for @see \Magento\Quote\Api\Data\AddressInterface
|
|
*/
|
|
interface AddressExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface
|
|
{
|
|
/**
|
|
* @return string|null
|
|
*/
|
|
public function getPickupLocationCode();
|
|
|
|
/**
|
|
* @param string $pickupLocationCode
|
|
* @return $this
|
|
*/
|
|
public function setPickupLocationCode($pickupLocationCode);
|
|
|
|
/**
|
|
* @return \Magento\SalesRule\Api\Data\RuleDiscountInterface[]|null
|
|
*/
|
|
public function getDiscounts();
|
|
|
|
/**
|
|
* @param \Magento\SalesRule\Api\Data\RuleDiscountInterface[] $discounts
|
|
* @return $this
|
|
*/
|
|
public function setDiscounts($discounts);
|
|
}
|