10 namespace Fossology\UI\Api\Models;
23 private $clearingEventId;
43 private $addedLicenses;
48 private $removedLicenses;
61 public function __construct($bulkId, $clearingEventId, $text, $matched, $tried, $addedLicenses, $removedLicenses)
63 $this->bulkId = intval($bulkId);
64 $this->clearingEventId = intval($clearingEventId);
66 $this->matched = $matched;
67 $this->tried = $tried;
68 $this->addedLicenses = $addedLicenses;
69 $this->removedLicenses = $removedLicenses;
72 public function getBulkId()
77 public function getClearingEventId()
79 return $this->clearingEventId;
82 public function getText()
87 public function getMatched()
89 return $this->matched;
92 public function getTried()
97 public function getAddedLicenses()
99 return $this->addedLicenses;
102 public function getRemovedLicenses()
104 return $this->removedLicenses;
107 public function setBulkId($bulkId)
109 $this->bulkId = $bulkId;
112 public function setClearingEventId($clearingEventId)
114 $this->clearingEventId = $clearingEventId;
117 public function setText($text)
122 public function setMatched($matched)
124 $this->matched = $matched;
127 public function setTried($tried)
129 $this->tried = $tried;
132 public function setAddedLicenses($addedLicenses)
134 $this->addedLicenses = $addedLicenses;
137 public function setRemovedLicenses($removedLicenses)
139 $this->removedLicenses = $removedLicenses;
142 public function getArray()
145 "bulkId" => $this->bulkId,
146 "clearingEventId" => $this->clearingEventId,
147 "text" => $this->text,
148 "matched" => $this->matched,
149 "tried" => $this->tried,
150 "addedLicenses" => $this->addedLicenses,
151 "removedLicenses" => $this->removedLicenses
__construct($bulkId, $clearingEventId, $text, $matched, $tried, $addedLicenses, $removedLicenses)