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: analyticsUI.proto
|
|
|
|
namespace Rv\Analytics\UI\NetworkGroup;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.analytics.UI.NetworkGroup.Invite</code>
|
|
*/
|
|
class Invite extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>bool did_accept = 1;</code>
|
|
*/
|
|
protected $did_accept = false;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type bool $did_accept
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\AnalyticsUI::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool did_accept = 1;</code>
|
|
* @return bool
|
|
*/
|
|
public function getDidAccept()
|
|
{
|
|
return $this->did_accept;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool did_accept = 1;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setDidAccept($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->did_accept = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|