propresenter-php/php/generated/Rv/Analytics/UI/CCLI/Report.php
2026-03-01 16:12:17 +01:00

126 lines
3.1 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: analyticsUI.proto
namespace Rv\Analytics\UI\CCLI;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.analytics.UI.CCLI.Report</code>
*/
class Report extends \Google\Protobuf\Internal\Message
{
protected $Component;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Analytics\UI\CCLI\Report\Shown $shown
* @type \Rv\Analytics\UI\CCLI\Report\Reset $reset
* @type \Rv\Analytics\UI\CCLI\Report\Export $export
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsUI::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>.rv.analytics.UI.CCLI.Report.Shown shown = 1;</code>
* @return \Rv\Analytics\UI\CCLI\Report\Shown|null
*/
public function getShown()
{
return $this->readOneof(1);
}
public function hasShown()
{
return $this->hasOneof(1);
}
/**
* Generated from protobuf field <code>.rv.analytics.UI.CCLI.Report.Shown shown = 1;</code>
* @param \Rv\Analytics\UI\CCLI\Report\Shown $var
* @return $this
*/
public function setShown($var)
{
GPBUtil::checkMessage($var, \Rv\Analytics\UI\CCLI\Report\Shown::class);
$this->writeOneof(1, $var);
return $this;
}
/**
* Generated from protobuf field <code>.rv.analytics.UI.CCLI.Report.Reset reset = 2;</code>
* @return \Rv\Analytics\UI\CCLI\Report\Reset|null
*/
public function getReset()
{
return $this->readOneof(2);
}
public function hasReset()
{
return $this->hasOneof(2);
}
/**
* Generated from protobuf field <code>.rv.analytics.UI.CCLI.Report.Reset reset = 2;</code>
* @param \Rv\Analytics\UI\CCLI\Report\Reset $var
* @return $this
*/
public function setReset($var)
{
GPBUtil::checkMessage($var, \Rv\Analytics\UI\CCLI\Report\Reset::class);
$this->writeOneof(2, $var);
return $this;
}
/**
* Generated from protobuf field <code>.rv.analytics.UI.CCLI.Report.Export export = 3;</code>
* @return \Rv\Analytics\UI\CCLI\Report\Export|null
*/
public function getExport()
{
return $this->readOneof(3);
}
public function hasExport()
{
return $this->hasOneof(3);
}
/**
* Generated from protobuf field <code>.rv.analytics.UI.CCLI.Report.Export export = 3;</code>
* @param \Rv\Analytics\UI\CCLI\Report\Export $var
* @return $this
*/
public function setExport($var)
{
GPBUtil::checkMessage($var, \Rv\Analytics\UI\CCLI\Report\Export::class);
$this->writeOneof(3, $var);
return $this;
}
/**
* @return string
*/
public function getComponent()
{
return $this->whichOneof("Component");
}
}