hours = $hours; } /** * @return int */ public function getHours() { return $this->hours; } /** * The number of minutes past the hour. Valid values are 0 to 59. * * @param int $minutes */ public function setMinutes($minutes) { $this->minutes = $minutes; } /** * @return int */ public function getMinutes() { return $this->minutes; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TimeInput::class, 'Google_Service_HangoutsChat_TimeInput');