id; } /** * Set score * * @param float $value * @return GradebookScoreDisplay */ public function set_score($value) { $this->score = $value; return $this; } /** * Get score * * @return float */ public function get_score() { return $this->score; } /** * Set display * * @param string $value * @return GradebookScoreDisplay */ public function set_display($value) { $this->display = $value; return $this; } /** * Get display * * @return string */ public function get_display() { return $this->display; } /** * Set category_id * * @param integer $value * @return GradebookScoreDisplay */ public function set_category_id($value) { $this->category_id = $value; return $this; } /** * Get category_id * * @return integer */ public function get_category_id() { return $this->category_id; } /** * Set score_color_percent * * @param float $value * @return GradebookScoreDisplay */ public function set_score_color_percent($value) { $this->score_color_percent = $value; return $this; } /** * Get score_color_percent * * @return float */ public function get_score_color_percent() { return $this->score_color_percent; } }