name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setPredefinedSource($predefinedSource)
{
$this->predefinedSource = $predefinedSource;
}
/**
* @return string
*/
public function getPredefinedSource()
{
return $this->predefinedSource;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Source::class, 'Google_Service_CloudSearch_Source');