60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: analyticsProContent.proto
|
|
|
|
namespace Rv\Analytics\ProContent;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.analytics.ProContent.Download</code>
|
|
*/
|
|
class Download extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>bool is_retry = 1;</code>
|
|
*/
|
|
protected $is_retry = false;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type bool $is_retry
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\AnalyticsProContent::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool is_retry = 1;</code>
|
|
* @return bool
|
|
*/
|
|
public function getIsRetry()
|
|
{
|
|
return $this->is_retry;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool is_retry = 1;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setIsRetry($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->is_retry = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|