end = $end; } /** * @return string */ public function getEnd() { return $this->end; } /** * The (inclusive) start of the time period. * * @param string $start */ public function setStart($start) { $this->start = $start; } /** * @return string */ public function getStart() { return $this->start; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TimePeriod::class, 'Google_Service_Calendar_TimePeriod');