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