rv.analytics.UI.MainView.PresentationEditor
*/
class PresentationEditor extends \Google\Protobuf\Internal\Message
{
protected $Component;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Analytics\UI\MainView\PresentationEditor\Shown $shown
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsUI::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.analytics.UI.MainView.PresentationEditor.Shown shown = 1;
* @return \Rv\Analytics\UI\MainView\PresentationEditor\Shown|null
*/
public function getShown()
{
return $this->readOneof(1);
}
public function hasShown()
{
return $this->hasOneof(1);
}
/**
* Generated from protobuf field .rv.analytics.UI.MainView.PresentationEditor.Shown shown = 1;
* @param \Rv\Analytics\UI\MainView\PresentationEditor\Shown $var
* @return $this
*/
public function setShown($var)
{
GPBUtil::checkMessage($var, \Rv\Analytics\UI\MainView\PresentationEditor\Shown::class);
$this->writeOneof(1, $var);
return $this;
}
/**
* @return string
*/
public function getComponent()
{
return $this->whichOneof("Component");
}
}