Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BulkSummaryInterface.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Framework\Bulk;
7 
14 {
18  const BULK_ID = 'uuid';
19  const DESCRIPTION = 'description';
20  const START_TIME = 'start_time';
21  const USER_ID = 'user_id';
22  const OPERATION_COUNT = 'operation_count';
28  const NOT_STARTED = 0;
29  const IN_PROGRESS = 1;
40  public function getBulkId();
41 
49  public function setBulkId($bulkUuid);
50 
57  public function getDescription();
58 
66  public function setDescription($description);
67 
74  public function getStartTime();
75 
83  public function setStartTime($timestamp);
84 
91  public function getUserId();
92 
100  public function setUserId($userId);
101 
108  public function getOperationCount();
109 
117  public function setOperationCount($operationCount);
118 }