day = $day; } /** * @return int */ public function getDay() { return $this->day; } /** * @param int */ public function setHours($hours) { $this->hours = $hours; } /** * @return int */ public function getHours() { return $this->hours; } /** * @param int */ public function setMinutes($minutes) { $this->minutes = $minutes; } /** * @return int */ public function getMinutes() { return $this->minutes; } /** * @param int */ public function setMonth($month) { $this->month = $month; } /** * @return int */ public function getMonth() { return $this->month; } /** * @param int */ public function setNanos($nanos) { $this->nanos = $nanos; } /** * @return int */ public function getNanos() { return $this->nanos; } /** * @param int */ public function setSeconds($seconds) { $this->seconds = $seconds; } /** * @return int */ public function getSeconds() { return $this->seconds; } /** * @param GoogleTypeTimeZone */ public function setTimeZone(GoogleTypeTimeZone $timeZone) { $this->timeZone = $timeZone; } /** * @return GoogleTypeTimeZone */ public function getTimeZone() { return $this->timeZone; } /** * @param string */ public function setUtcOffset($utcOffset) { $this->utcOffset = $utcOffset; } /** * @return string */ public function getUtcOffset() { return $this->utcOffset; } /** * @param int */ public function setYear($year) { $this->year = $year; } /** * @return int */ public function getYear() { return $this->year; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleTypeDateTime::class, 'Google_Service_Document_GoogleTypeDateTime');