c_id = $value; return $this; } /** * Get c_id * * @return integer */ public function get_c_id() { return $this->c_id; } /** * Set role_id * * @param integer $value * @return RoleUser */ public function set_role_id($value) { $this->role_id = $value; return $this; } /** * Get role_id * * @return integer */ public function get_role_id() { return $this->role_id; } /** * Set user_id * * @param integer $value * @return RoleUser */ public function set_user_id($value) { $this->user_id = $value; return $this; } /** * Get user_id * * @return integer */ public function get_user_id() { return $this->user_id; } /** * Set scope * * @param string $value * @return RoleUser */ public function set_scope($value) { $this->scope = $value; return $this; } /** * Get scope * * @return string */ public function get_scope() { return $this->scope; } }