name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Required. The name used to identify this timer event in reports. * * @param string $reportingName */ public function setReportingName($reportingName) { $this->reportingName = $reportingName; } /** * @return string */ public function getReportingName() { return $this->reportingName; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TimerEvent::class, 'Google_Service_DisplayVideo_TimerEvent');