_propDict)) { return $this->_propDict["averageScore"]; } else { return null; } } /** * Sets the averageScore * Average score within specified basis. * * @param float $val The value of the averageScore * * @return AverageComparativeScore */ public function setAverageScore($val) { $this->_propDict["averageScore"] = $val; return $this; } /** * Gets the basis * Scope type. The possible values are: AllTenants, TotalSeats, IndustryTypes. * * @return string|null The basis */ public function getBasis() { if (array_key_exists("basis", $this->_propDict)) { return $this->_propDict["basis"]; } else { return null; } } /** * Sets the basis * Scope type. The possible values are: AllTenants, TotalSeats, IndustryTypes. * * @param string $val The value of the basis * * @return AverageComparativeScore */ public function setBasis($val) { $this->_propDict["basis"] = $val; return $this; } }