koleygr
0
Q:

magento 2 add custom data to checkout session

// reference https://bit.ly/3nbIQzs

class myClass {
  	
  	// \Magento\Checkout\Model\Session
  	private $_checkoutSession;

	public function __construct(
		\Magento\Checkout\Model\Session $checkoutSession
	){  
		$this->_checkoutSession = $checkoutSession;
	}
  
	public function execute() {
		// set data
    	$this->_checkoutSession->setTestData('123');

		// get data
    	$this->_checkoutSession->getTestData('123');
		
		// unset data
    	$this->_checkoutSession->unsTestData('123');
	}
}
0

New to Communities?

Join the community