Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BulkSummary.php
Go to the documentation of this file.
1 <?php
8 
11 
16 {
20  public function getBulkId()
21  {
22  return $this->getData(self::BULK_ID);
23  }
24 
28  public function setBulkId($bulkUuid)
29  {
30  return $this->setData(self::BULK_ID, $bulkUuid);
31  }
32 
36  public function getDescription()
37  {
38  return $this->getData(self::DESCRIPTION);
39  }
40 
44  public function setDescription($description)
45  {
46  return $this->setData(self::DESCRIPTION, $description);
47  }
48 
52  public function getStartTime()
53  {
54  return $this->getData(self::START_TIME);
55  }
56 
60  public function setStartTime($timestamp)
61  {
62  return $this->setData(self::START_TIME, $timestamp);
63  }
64 
68  public function getUserId()
69  {
70  return $this->getData(self::USER_ID);
71  }
72 
76  public function setUserId($userId)
77  {
78  return $this->setData(self::USER_ID, $userId);
79  }
80 
84  public function getUserType()
85  {
86  return $this->getData(self::USER_TYPE);
87  }
88 
92  public function setUserType($userType)
93  {
94  return $this->setData(self::USER_TYPE, $userType);
95  }
96 
100  public function getOperationCount()
101  {
102  return $this->getData(self::OPERATION_COUNT);
103  }
104 
108  public function setOperationCount($operationCount)
109  {
110  return $this->setData(self::OPERATION_COUNT, $operationCount);
111  }
112 
118  public function getExtensionAttributes()
119  {
120  return $this->getData(self::EXTENSION_ATTRIBUTES_KEY);
121  }
122 
129  public function setExtensionAttributes(
130  \Magento\AsynchronousOperations\Api\Data\BulkSummaryExtensionInterface $extensionAttributes
131  ) {
132  return $this->setData(self::EXTENSION_ATTRIBUTES_KEY, $extensionAttributes);
133  }
134 }
getData($key='', $index=null)
Definition: DataObject.php:119
setExtensionAttributes(\Magento\AsynchronousOperations\Api\Data\BulkSummaryExtensionInterface $extensionAttributes)
$extensionAttributes
Definition: payment.php:22
setData($key, $value=null)
Definition: DataObject.php:72