name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
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');