Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SearchCriteria.php
Go to the documentation of this file.
1 <?php
7 
10 
16 {
17  const REQUEST_NAME = 'request_name';
18 
22  public function getRequestName()
23  {
24  return $this->_get(self::REQUEST_NAME);
25  }
26 
30  public function setRequestName($requestName)
31  {
32  return $this->setData(self::REQUEST_NAME, $requestName);
33  }
34 }