name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setUint64Value($uint64Value)
{
$this->uint64Value = $uint64Value;
}
/**
* @return string
*/
public function getUint64Value()
{
return $this->uint64Value;
}
/**
* @param string
*/
public function setValue($value)
{
$this->value = $value;
}
/**
* @return string
*/
public function getValue()
{
return $this->value;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Property::class, 'Google_Service_Vision_Property');