id; } public function setId(int $id): Result { $this->id = $id; return $this; } public function getIssuer(): string { return $this->issuer; } public function setIssuer(string $issuer): Result { $this->issuer = $issuer; return $this; } public function getUserId(): int { return $this->userId; } public function setUserId(int $userId): Result { $this->userId = $userId; return $this; } public function getClientUId(): string { return $this->clientUId; } public function setClientUId(string $clientUId): Result { $this->clientUId = $clientUId; return $this; } public function getCourseCode(): string { return $this->courseCode; } /** * @param string $tool */ public function setCourseCode(string $courseCode): Result { $this->courseCode = $courseCode; return $this; } public function getToolId(): int { return $this->toolId; } public function setToolId(int $toolId): Result { $this->toolId = $toolId; return $this; } public function getToolName(): string { return $this->toolName; } public function setToolName(string $toolName): Result { $this->toolName = $toolName; return $this; } public function getScore(): float { return $this->score; } public function setScore(float $score): Result { $this->score = $score; return $this; } public function getProgress(): int { return $this->progress; } public function setProgress(int $progress): Result { $this->progress = $progress; return $this; } public function getDuration(): int { return $this->duration; } public function setDuration(int $duration): Result { $this->duration = $duration; return $this; } public function getStartDate(): \DateTime { return $this->startDate; } public function setStartDate(\DateTime $startDate): Result { $this->startDate = $startDate; return $this; } public function getUserIp(): string { return $this->userIp; } public function setUserIp(string $userIp): Result { $this->userIp = $userIp; return $this; } public function getLtiLaunchId(): string { return $this->ltiLaunchId; } public function setLtiLaunchId(string $ltiLaunchId): Result { $this->ltiLaunchId = $ltiLaunchId; return $this; } }