rv.data.NetworkAPI.Action.API_Prop.ClearProp
*/
class ClearProp extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier identifier = 1;
*/
protected $identifier = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\NetworkAPI\IndexOrNameIdentifier $identifier
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApi::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier identifier = 1;
* @return \Rv\Data\NetworkAPI\IndexOrNameIdentifier|null
*/
public function getIdentifier()
{
return $this->identifier;
}
public function hasIdentifier()
{
return isset($this->identifier);
}
public function clearIdentifier()
{
unset($this->identifier);
}
/**
* Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier identifier = 1;
* @param \Rv\Data\NetworkAPI\IndexOrNameIdentifier $var
* @return $this
*/
public function setIdentifier($var)
{
GPBUtil::checkMessage($var, \Rv\Data\NetworkAPI\IndexOrNameIdentifier::class);
$this->identifier = $var;
return $this;
}
}