Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
CouponMassDeleteResult.php
Go to the documentation of this file.
1 <?php
7 
15 {
16  const FAILED_ITEMS = 'failed_items';
17  const MISSING_ITEMS = 'missing_items';
18 
22  public function getFailedItems()
23  {
24  return $this->_get(self::FAILED_ITEMS);
25  }
26 
30  public function setFailedItems(array $items)
31  {
32  return $this->setData(self::FAILED_ITEMS, $items);
33  }
34 
38  public function getMissingItems()
39  {
40  return $this->_get(self::MISSING_ITEMS);
41  }
42 
46  public function setMissingItems(array $items)
47  {
48  return $this->setData(self::MISSING_ITEMS, $items);
49  }
50 }
$items