rv.data.NetworkAPI.Action.API_Clear */ class API_Clear extends \Google\Protobuf\Internal\Message { protected $ClearInfo; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $layer * @type \Rv\Data\NetworkAPI\IndexOrNameIdentifier $group_identifier * } */ public function __construct($data = NULL) { \GPBMetadata\ProApi::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.NetworkAPI.Action.API_Clear.Layer layer = 1; * @return int */ public function getLayer() { return $this->readOneof(1); } public function hasLayer() { return $this->hasOneof(1); } /** * Generated from protobuf field .rv.data.NetworkAPI.Action.API_Clear.Layer layer = 1; * @param int $var * @return $this */ public function setLayer($var) { GPBUtil::checkEnum($var, \Rv\Data\NetworkAPI\Action\API_Clear\Layer::class); $this->writeOneof(1, $var); return $this; } /** * Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier group_identifier = 2; * @return \Rv\Data\NetworkAPI\IndexOrNameIdentifier|null */ public function getGroupIdentifier() { return $this->readOneof(2); } public function hasGroupIdentifier() { return $this->hasOneof(2); } /** * Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier group_identifier = 2; * @param \Rv\Data\NetworkAPI\IndexOrNameIdentifier $var * @return $this */ public function setGroupIdentifier($var) { GPBUtil::checkMessage($var, \Rv\Data\NetworkAPI\IndexOrNameIdentifier::class); $this->writeOneof(2, $var); return $this; } /** * @return string */ public function getClearInfo() { return $this->whichOneof("ClearInfo"); } }