27 lines
		
	
	
		
			590 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			590 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
namespace Magento\Quote\Api\Data;
 | 
						|
 | 
						|
/**
 | 
						|
 * Extension class for @see \Magento\Quote\Api\Data\PaymentInterface
 | 
						|
 */
 | 
						|
class PaymentExtension extends \Magento\Framework\Api\AbstractSimpleObject implements PaymentExtensionInterface
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @return string[]|null
 | 
						|
     */
 | 
						|
    public function getAgreementIds()
 | 
						|
    {
 | 
						|
        return $this->_get('agreement_ids');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string[] $agreementIds
 | 
						|
     * @return $this
 | 
						|
     */
 | 
						|
    public function setAgreementIds($agreementIds)
 | 
						|
    {
 | 
						|
        $this->setData('agreement_ids', $agreementIds);
 | 
						|
        return $this;
 | 
						|
    }
 | 
						|
}
 |