rv.data.ProLink.HandlerOut
*/
class HandlerOut extends \Google\Protobuf\Internal\Message
{
protected $Response;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\ProLink\HandlerOut\GroupName $group_name
* @type \Rv\Data\ProLink\GroupDefinition $group_definition
* @type \Rv\Data\ProLink\HandlerOut\GroupJoinConfirmation $group_join_confirmation
* @type \Rv\Data\ProLink\HandlerOut\GroupJoinPassword $group_join_password
* @type \Rv\Data\ProLink\HandlerOut\ProPresenterInfo $propresenter_info
* @type \Rv\Data\ProApiNetworkConfiguration $configuration
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApi::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.ProLink.HandlerOut.GroupName group_name = 1;
* @return \Rv\Data\ProLink\HandlerOut\GroupName|null
*/
public function getGroupName()
{
return $this->readOneof(1);
}
public function hasGroupName()
{
return $this->hasOneof(1);
}
/**
* Generated from protobuf field .rv.data.ProLink.HandlerOut.GroupName group_name = 1;
* @param \Rv\Data\ProLink\HandlerOut\GroupName $var
* @return $this
*/
public function setGroupName($var)
{
GPBUtil::checkMessage($var, \Rv\Data\ProLink\HandlerOut\GroupName::class);
$this->writeOneof(1, $var);
return $this;
}
/**
* Generated from protobuf field .rv.data.ProLink.GroupDefinition group_definition = 2;
* @return \Rv\Data\ProLink\GroupDefinition|null
*/
public function getGroupDefinition()
{
return $this->readOneof(2);
}
public function hasGroupDefinition()
{
return $this->hasOneof(2);
}
/**
* Generated from protobuf field .rv.data.ProLink.GroupDefinition group_definition = 2;
* @param \Rv\Data\ProLink\GroupDefinition $var
* @return $this
*/
public function setGroupDefinition($var)
{
GPBUtil::checkMessage($var, \Rv\Data\ProLink\GroupDefinition::class);
$this->writeOneof(2, $var);
return $this;
}
/**
* Generated from protobuf field .rv.data.ProLink.HandlerOut.GroupJoinConfirmation group_join_confirmation = 3;
* @return \Rv\Data\ProLink\HandlerOut\GroupJoinConfirmation|null
*/
public function getGroupJoinConfirmation()
{
return $this->readOneof(3);
}
public function hasGroupJoinConfirmation()
{
return $this->hasOneof(3);
}
/**
* Generated from protobuf field .rv.data.ProLink.HandlerOut.GroupJoinConfirmation group_join_confirmation = 3;
* @param \Rv\Data\ProLink\HandlerOut\GroupJoinConfirmation $var
* @return $this
*/
public function setGroupJoinConfirmation($var)
{
GPBUtil::checkMessage($var, \Rv\Data\ProLink\HandlerOut\GroupJoinConfirmation::class);
$this->writeOneof(3, $var);
return $this;
}
/**
* Generated from protobuf field .rv.data.ProLink.HandlerOut.GroupJoinPassword group_join_password = 4;
* @return \Rv\Data\ProLink\HandlerOut\GroupJoinPassword|null
*/
public function getGroupJoinPassword()
{
return $this->readOneof(4);
}
public function hasGroupJoinPassword()
{
return $this->hasOneof(4);
}
/**
* Generated from protobuf field .rv.data.ProLink.HandlerOut.GroupJoinPassword group_join_password = 4;
* @param \Rv\Data\ProLink\HandlerOut\GroupJoinPassword $var
* @return $this
*/
public function setGroupJoinPassword($var)
{
GPBUtil::checkMessage($var, \Rv\Data\ProLink\HandlerOut\GroupJoinPassword::class);
$this->writeOneof(4, $var);
return $this;
}
/**
* Generated from protobuf field .rv.data.ProLink.HandlerOut.ProPresenterInfo propresenter_info = 5;
* @return \Rv\Data\ProLink\HandlerOut\ProPresenterInfo|null
*/
public function getPropresenterInfo()
{
return $this->readOneof(5);
}
public function hasPropresenterInfo()
{
return $this->hasOneof(5);
}
/**
* Generated from protobuf field .rv.data.ProLink.HandlerOut.ProPresenterInfo propresenter_info = 5;
* @param \Rv\Data\ProLink\HandlerOut\ProPresenterInfo $var
* @return $this
*/
public function setPropresenterInfo($var)
{
GPBUtil::checkMessage($var, \Rv\Data\ProLink\HandlerOut\ProPresenterInfo::class);
$this->writeOneof(5, $var);
return $this;
}
/**
* Generated from protobuf field .rv.data.ProApiNetworkConfiguration configuration = 6;
* @return \Rv\Data\ProApiNetworkConfiguration|null
*/
public function getConfiguration()
{
return $this->readOneof(6);
}
public function hasConfiguration()
{
return $this->hasOneof(6);
}
/**
* Generated from protobuf field .rv.data.ProApiNetworkConfiguration configuration = 6;
* @param \Rv\Data\ProApiNetworkConfiguration $var
* @return $this
*/
public function setConfiguration($var)
{
GPBUtil::checkMessage($var, \Rv\Data\ProApiNetworkConfiguration::class);
$this->writeOneof(6, $var);
return $this;
}
/**
* @return string
*/
public function getResponse()
{
return $this->whichOneof("Response");
}
}