rv.data.CaptureActionResponse.StopCapture
*/
class StopCapture extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field bool stop_capture = 1;
*/
protected $stop_capture = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $stop_capture
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProCore::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field bool stop_capture = 1;
* @return bool
*/
public function getStopCapture()
{
return $this->stop_capture;
}
/**
* Generated from protobuf field bool stop_capture = 1;
* @param bool $var
* @return $this
*/
public function setStopCapture($var)
{
GPBUtil::checkBool($var);
$this->stop_capture = $var;
return $this;
}
}