calendars = $calendars; } /** * @return FreeBusyCalendar[] */ public function getCalendars() { return $this->calendars; } /** * @param FreeBusyGroup[] */ public function setGroups($groups) { $this->groups = $groups; } /** * @return FreeBusyGroup[] */ public function getGroups() { return $this->groups; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param string */ public function setTimeMax($timeMax) { $this->timeMax = $timeMax; } /** * @return string */ public function getTimeMax() { return $this->timeMax; } /** * @param string */ public function setTimeMin($timeMin) { $this->timeMin = $timeMin; } /** * @return string */ public function getTimeMin() { return $this->timeMin; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FreeBusyResponse::class, 'Google_Service_Calendar_FreeBusyResponse');