Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
OperationStatus.php
Go to the documentation of this file.
1 <?php
7 declare(strict_types=1);
8 
10 
15 
20 {
24  public function getId()
25  {
26  return $this->getData(OperationInterface::ID);
27  }
28 
32  public function getStatus()
33  {
34  return $this->getData(OperationInterface::STATUS);
35  }
36 
40  public function getResultMessage()
41  {
43  }
44 
48  public function getErrorCode()
49  {
51  }
52 }
getData($key='', $index=null)
Definition: DataObject.php:119