id; } /** * Set sessionPathId * * @param integer $sessionPathId * @return UserSessionPath */ public function setSessionPathId($sessionPathId) { $this->sessionPathId = $sessionPathId; return $this; } /** * Get sessionPathId * * @return integer */ public function getSessionPathId() { return $this->sessionPathId; } /** * Set userId * * @param integer $userId * @return UserSessionPath */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return integer */ public function getUserId() { return $this->userId; } /** * Set status * * @param string $status * @return UserSessionPath */ public function setStatus($status) { $this->status = $status; return $this; } /** * Get status * * @return string */ public function getStatus() { return $this->status; } /** * Set percentage * * @param integer $percentage * @return UserSessionPath */ public function setPercentage($percentage) { $this->percentage = $percentage; return $this; } /** * Get percentage * * @return integer */ public function getPercentage() { return $this->percentage; } }