name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setUrlOrAppId($urlOrAppId)
{
$this->urlOrAppId = $urlOrAppId;
}
/**
* @return string
*/
public function getUrlOrAppId()
{
return $this->urlOrAppId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Site::class, 'Google_Service_DisplayVideo_Site');