closeTime = $closeTime; } /** * @return TimeOfDay */ public function getCloseTime() { return $this->closeTime; } /** * @param bool */ public function setClosed($closed) { $this->closed = $closed; } /** * @return bool */ public function getClosed() { return $this->closed; } /** * @param Date */ public function setEndDate(Date $endDate) { $this->endDate = $endDate; } /** * @return Date */ public function getEndDate() { return $this->endDate; } /** * @param TimeOfDay */ public function setOpenTime(TimeOfDay $openTime) { $this->openTime = $openTime; } /** * @return TimeOfDay */ public function getOpenTime() { return $this->openTime; } /** * @param Date */ public function setStartDate(Date $startDate) { $this->startDate = $startDate; } /** * @return Date */ public function getStartDate() { return $this->startDate; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SpecialHourPeriod::class, 'Google_Service_MyBusinessBusinessInformation_SpecialHourPeriod');