label = $label;
}
/**
* @return string
*/
public function getLabel()
{
return $this->label;
}
/**
* @param string
*/
public function setOperatorName($operatorName)
{
$this->operatorName = $operatorName;
}
/**
* @return string
*/
public function getOperatorName()
{
return $this->operatorName;
}
/**
* @param NamedProperty
*/
public function setProperty(NamedProperty $property)
{
$this->property = $property;
}
/**
* @return NamedProperty
*/
public function getProperty()
{
return $this->property;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ResultDisplayField::class, 'Google_Service_CloudSearch_ResultDisplayField');