endTime = $endTime; } /** * @return string */ public function getEndTime() { return $this->endTime; } /** * Optional. Inclusive start of the interval.If specified, a Timestamp * matching this interval will have to be the same or after the start. * * @param string $startTime */ public function setStartTime($startTime) { $this->startTime = $startTime; } /** * @return string */ public function getStartTime() { return $this->startTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Interval::class, 'Google_Service_Dataproc_Interval');