rv.analytics.Trigger.Action.CaptureStop
*/
class CaptureStop extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field bool confirm_before_stopping = 1;
*/
protected $confirm_before_stopping = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $confirm_before_stopping
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsTrigger::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field bool confirm_before_stopping = 1;
* @return bool
*/
public function getConfirmBeforeStopping()
{
return $this->confirm_before_stopping;
}
/**
* Generated from protobuf field bool confirm_before_stopping = 1;
* @param bool $var
* @return $this
*/
public function setConfirmBeforeStopping($var)
{
GPBUtil::checkBool($var);
$this->confirm_before_stopping = $var;
return $this;
}
}