contextValues = $contextValues; } /** * @return ContextValue[] */ public function getContextValues() { return $this->contextValues; } /** * @param int */ public function setEndKeyIndex($endKeyIndex) { $this->endKeyIndex = $endKeyIndex; } /** * @return int */ public function getEndKeyIndex() { return $this->endKeyIndex; } /** * @param LocalizedString */ public function setInfo(LocalizedString $info) { $this->info = $info; } /** * @return LocalizedString */ public function getInfo() { return $this->info; } /** * @param string */ public function setKeysCount($keysCount) { $this->keysCount = $keysCount; } /** * @return string */ public function getKeysCount() { return $this->keysCount; } /** * @param LocalizedString */ public function setMetric(LocalizedString $metric) { $this->metric = $metric; } /** * @return LocalizedString */ public function getMetric() { return $this->metric; } /** * @param int */ public function setStartKeyIndex($startKeyIndex) { $this->startKeyIndex = $startKeyIndex; } /** * @return int */ public function getStartKeyIndex() { return $this->startKeyIndex; } /** * @param string */ public function setTimeOffset($timeOffset) { $this->timeOffset = $timeOffset; } /** * @return string */ public function getTimeOffset() { return $this->timeOffset; } /** * @param LocalizedString */ public function setUnit(LocalizedString $unit) { $this->unit = $unit; } /** * @return LocalizedString */ public function getUnit() { return $this->unit; } /** * @param float */ public function setValue($value) { $this->value = $value; } /** * @return float */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(KeyRangeInfo::class, 'Google_Service_Spanner_KeyRangeInfo');