iid = null; $this->path = ''; $this->parentItemId = 0; $this->previousItemId = 0; $this->description = ''; $this->maxScore = 100.0; } public function getIid(): ?int { return $this->iid; } public function setLp(CLp $lp): self { $this->lp = $lp; return $this; } public function getLp(): CLp { return $this->lp; } /** * Set itemType. * * @param string $itemType * * @return CLpItem */ public function setItemType($itemType) { $this->itemType = $itemType; return $this; } /** * Get itemType. * * @return string */ public function getItemType() { return $this->itemType; } /** * Set ref. * * @param string $ref * * @return CLpItem */ public function setRef($ref) { $this->ref = $ref; return $this; } /** * Get ref. * * @return string */ public function getRef() { return $this->ref; } /** * Set title. * * @param string $title * * @return CLpItem */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title. * * @return string */ public function getTitle() { return $this->title; } /** * Set description. * * @param string $description * * @return CLpItem */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description. * * @return string */ public function getDescription() { return $this->description; } /** * Set path. * * @param string $path * * @return CLpItem */ public function setPath($path) { $this->path = $path; return $this; } /** * Get path. * * @return string */ public function getPath() { return $this->path; } /** * Set minScore. * * @param float $minScore * * @return CLpItem */ public function setMinScore($minScore) { $this->minScore = $minScore; return $this; } /** * Get minScore. * * @return float */ public function getMinScore() { return $this->minScore; } /** * Set maxScore. * * @param float $maxScore * * @return CLpItem */ public function setMaxScore($maxScore) { $this->maxScore = $maxScore; return $this; } /** * Get maxScore. * * @return float */ public function getMaxScore() { return $this->maxScore; } /** * Set masteryScore. * * @param float $masteryScore * * @return CLpItem */ public function setMasteryScore($masteryScore) { $this->masteryScore = $masteryScore; return $this; } /** * Get masteryScore. * * @return float */ public function getMasteryScore() { return $this->masteryScore; } /** * Set parentItemId. * * @param int $parentItemId * * @return CLpItem */ public function setParentItemId($parentItemId) { $this->parentItemId = $parentItemId; return $this; } /** * Get parentItemId. * * @return int */ public function getParentItemId() { return $this->parentItemId; } /** * Set previousItemId. * * @param int $previousItemId * * @return CLpItem */ public function setPreviousItemId($previousItemId) { $this->previousItemId = $previousItemId; return $this; } /** * Get previousItemId. * * @return int */ public function getPreviousItemId() { return $this->previousItemId; } /** * Set nextItemId. * * @param int $nextItemId * * @return CLpItem */ public function setNextItemId($nextItemId) { $this->nextItemId = $nextItemId; return $this; } /** * Get nextItemId. * * @return int */ public function getNextItemId() { return $this->nextItemId; } /** * Set displayOrder. * * @param int $displayOrder * * @return CLpItem */ public function setDisplayOrder($displayOrder) { $this->displayOrder = $displayOrder; return $this; } /** * Get displayOrder. * * @return int */ public function getDisplayOrder() { return $this->displayOrder; } /** * Set prerequisite. * * @param string $prerequisite * * @return CLpItem */ public function setPrerequisite($prerequisite) { $this->prerequisite = $prerequisite; return $this; } /** * Get prerequisite. * * @return string */ public function getPrerequisite() { return $this->prerequisite; } /** * Set parameters. * * @param string $parameters * * @return CLpItem */ public function setParameters($parameters) { $this->parameters = $parameters; return $this; } /** * Get parameters. * * @return string */ public function getParameters() { return $this->parameters; } /** * Set launchData. * * @param string $launchData * * @return CLpItem */ public function setLaunchData($launchData) { $this->launchData = $launchData; return $this; } /** * Get launchData. * * @return string */ public function getLaunchData() { return $this->launchData; } /** * Set maxTimeAllowed. * * @param string $maxTimeAllowed * * @return CLpItem */ public function setMaxTimeAllowed($maxTimeAllowed) { $this->maxTimeAllowed = $maxTimeAllowed; return $this; } /** * Get maxTimeAllowed. * * @return string */ public function getMaxTimeAllowed() { return $this->maxTimeAllowed; } /** * Set terms. * * @param string $terms * * @return CLpItem */ public function setTerms($terms) { $this->terms = $terms; return $this; } /** * Get terms. * * @return string */ public function getTerms() { return $this->terms; } /** * Set searchDid. * * @param int $searchDid * * @return CLpItem */ public function setSearchDid($searchDid) { $this->searchDid = $searchDid; return $this; } /** * Get searchDid. * * @return int */ public function getSearchDid() { return $this->searchDid; } /** * Set audio. * * @param string $audio * * @return CLpItem */ public function setAudio($audio) { $this->audio = $audio; return $this; } /** * Get audio. * * @return string */ public function getAudio() { return $this->audio; } /** * Set prerequisiteMinScore. * * @param float $prerequisiteMinScore * * @return CLpItem */ public function setPrerequisiteMinScore($prerequisiteMinScore) { $this->prerequisiteMinScore = $prerequisiteMinScore; return $this; } /** * Get prerequisiteMinScore. * * @return float */ public function getPrerequisiteMinScore() { return $this->prerequisiteMinScore; } /** * Set prerequisiteMaxScore. * * @param float $prerequisiteMaxScore * * @return CLpItem */ public function setPrerequisiteMaxScore($prerequisiteMaxScore) { $this->prerequisiteMaxScore = $prerequisiteMaxScore; return $this; } /** * Get prerequisiteMaxScore. * * @return float */ public function getPrerequisiteMaxScore() { return $this->prerequisiteMaxScore; } /** * Set cId. * * @param int $cId * * @return CLpItem */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId. * * @return int */ public function getCId() { return $this->cId; } }