averageRank = $averageRank;
}
public function getAverageRank()
{
return $this->averageRank;
}
public function setMeanAveragePrecision($meanAveragePrecision)
{
$this->meanAveragePrecision = $meanAveragePrecision;
}
public function getMeanAveragePrecision()
{
return $this->meanAveragePrecision;
}
public function setMeanSquaredError($meanSquaredError)
{
$this->meanSquaredError = $meanSquaredError;
}
public function getMeanSquaredError()
{
return $this->meanSquaredError;
}
public function setNormalizedDiscountedCumulativeGain($normalizedDiscountedCumulativeGain)
{
$this->normalizedDiscountedCumulativeGain = $normalizedDiscountedCumulativeGain;
}
public function getNormalizedDiscountedCumulativeGain()
{
return $this->normalizedDiscountedCumulativeGain;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(RankingMetrics::class, 'Google_Service_Bigquery_RankingMetrics');