20 lines
438 B
PHP
Executable File
20 lines
438 B
PHP
Executable File
<?php
|
|
namespace Magento\Quote\Api\Data;
|
|
|
|
/**
|
|
* ExtensionInterface class for @see \Magento\Quote\Api\Data\PaymentInterface
|
|
*/
|
|
interface PaymentExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface
|
|
{
|
|
/**
|
|
* @return string[]|null
|
|
*/
|
|
public function getAgreementIds();
|
|
|
|
/**
|
|
* @param string[] $agreementIds
|
|
* @return $this
|
|
*/
|
|
public function setAgreementIds($agreementIds);
|
|
}
|