day = $day; } /** * @return int */ public function getDay() { return $this->day; } /** * Month of a year. Must be from 1 to 12, or 0 to specify a year without a * month and day. * * @param int $month */ public function setMonth($month) { $this->month = $month; } /** * @return int */ public function getMonth() { return $this->month; } /** * Year of the date. Must be from 1 to 9999, or 0 to specify a date without a * year. * * @param int $year */ 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(Date::class, 'Google_Service_MigrationCenterAPI_Date');