rangeEnd = $rangeEnd; } /** * @return string */ public function getRangeEnd() { return $this->rangeEnd; } /** * The start of the range (inclusive) in signed long integer format. * * @param string $rangeStart */ public function setRangeStart($rangeStart) { $this->rangeStart = $rangeStart; } /** * @return string */ public function getRangeStart() { return $this->rangeStart; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Int64RangeMatch::class, 'Google_Service_Compute_Int64RangeMatch');