rv.analytics.Trigger.Action.Macro
*/
class Macro extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field int32 action_count = 1;
*/
protected $action_count = 0;
/**
* Generated from protobuf field int32 cue_action_count = 2;
*/
protected $cue_action_count = 0;
/**
* Generated from protobuf field int32 total_action_count = 3;
*/
protected $total_action_count = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $action_count
* @type int $cue_action_count
* @type int $total_action_count
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsTrigger::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field int32 action_count = 1;
* @return int
*/
public function getActionCount()
{
return $this->action_count;
}
/**
* Generated from protobuf field int32 action_count = 1;
* @param int $var
* @return $this
*/
public function setActionCount($var)
{
GPBUtil::checkInt32($var);
$this->action_count = $var;
return $this;
}
/**
* Generated from protobuf field int32 cue_action_count = 2;
* @return int
*/
public function getCueActionCount()
{
return $this->cue_action_count;
}
/**
* Generated from protobuf field int32 cue_action_count = 2;
* @param int $var
* @return $this
*/
public function setCueActionCount($var)
{
GPBUtil::checkInt32($var);
$this->cue_action_count = $var;
return $this;
}
/**
* Generated from protobuf field int32 total_action_count = 3;
* @return int
*/
public function getTotalActionCount()
{
return $this->total_action_count;
}
/**
* Generated from protobuf field int32 total_action_count = 3;
* @param int $var
* @return $this
*/
public function setTotalActionCount($var)
{
GPBUtil::checkInt32($var);
$this->total_action_count = $var;
return $this;
}
}