rv.analytics.trackedevents.AudioInputStartUp
*/
class AudioInputStartUp extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field uint32 total_input_count = 1;
*/
protected $total_input_count = 0;
/**
* Generated from protobuf field uint32 on_input_count = 2;
*/
protected $on_input_count = 0;
/**
* Generated from protobuf field uint32 off_input_count = 3;
*/
protected $off_input_count = 0;
/**
* Generated from protobuf field uint32 auto_on_input_count = 4;
*/
protected $auto_on_input_count = 0;
/**
* Generated from protobuf field uint32 auto_off_input_count = 5;
*/
protected $auto_off_input_count = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $total_input_count
* @type int $on_input_count
* @type int $off_input_count
* @type int $auto_on_input_count
* @type int $auto_off_input_count
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsTrackedEvents::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field uint32 total_input_count = 1;
* @return int
*/
public function getTotalInputCount()
{
return $this->total_input_count;
}
/**
* Generated from protobuf field uint32 total_input_count = 1;
* @param int $var
* @return $this
*/
public function setTotalInputCount($var)
{
GPBUtil::checkUint32($var);
$this->total_input_count = $var;
return $this;
}
/**
* Generated from protobuf field uint32 on_input_count = 2;
* @return int
*/
public function getOnInputCount()
{
return $this->on_input_count;
}
/**
* Generated from protobuf field uint32 on_input_count = 2;
* @param int $var
* @return $this
*/
public function setOnInputCount($var)
{
GPBUtil::checkUint32($var);
$this->on_input_count = $var;
return $this;
}
/**
* Generated from protobuf field uint32 off_input_count = 3;
* @return int
*/
public function getOffInputCount()
{
return $this->off_input_count;
}
/**
* Generated from protobuf field uint32 off_input_count = 3;
* @param int $var
* @return $this
*/
public function setOffInputCount($var)
{
GPBUtil::checkUint32($var);
$this->off_input_count = $var;
return $this;
}
/**
* Generated from protobuf field uint32 auto_on_input_count = 4;
* @return int
*/
public function getAutoOnInputCount()
{
return $this->auto_on_input_count;
}
/**
* Generated from protobuf field uint32 auto_on_input_count = 4;
* @param int $var
* @return $this
*/
public function setAutoOnInputCount($var)
{
GPBUtil::checkUint32($var);
$this->auto_on_input_count = $var;
return $this;
}
/**
* Generated from protobuf field uint32 auto_off_input_count = 5;
* @return int
*/
public function getAutoOffInputCount()
{
return $this->auto_off_input_count;
}
/**
* Generated from protobuf field uint32 auto_off_input_count = 5;
* @param int $var
* @return $this
*/
public function setAutoOffInputCount($var)
{
GPBUtil::checkUint32($var);
$this->auto_off_input_count = $var;
return $this;
}
}