rv.data.KeyMappingsDocument
*/
class KeyMappingsDocument extends \Google\Protobuf\Internal\Message
{
/**
* Application metadata of the writer.
*
* Generated from protobuf field .rv.data.ApplicationInfo application_info = 1;
*/
protected $application_info = null;
/**
* Configured key bindings. Empty in the reference sample.
*
* Generated from protobuf field repeated .rv.data.KeyMappingsDocument.Mapping mappings = 2;
*/
private $mappings;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\ApplicationInfo $application_info
* Application metadata of the writer.
* @type array<\Rv\Data\KeyMappingsDocument\Mapping>|\Google\Protobuf\Internal\RepeatedField $mappings
* Configured key bindings. Empty in the reference sample.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\KeyMappings::initOnce();
parent::__construct($data);
}
/**
* Application metadata of the writer.
*
* Generated from protobuf field .rv.data.ApplicationInfo application_info = 1;
* @return \Rv\Data\ApplicationInfo|null
*/
public function getApplicationInfo()
{
return $this->application_info;
}
public function hasApplicationInfo()
{
return isset($this->application_info);
}
public function clearApplicationInfo()
{
unset($this->application_info);
}
/**
* Application metadata of the writer.
*
* Generated from protobuf field .rv.data.ApplicationInfo application_info = 1;
* @param \Rv\Data\ApplicationInfo $var
* @return $this
*/
public function setApplicationInfo($var)
{
GPBUtil::checkMessage($var, \Rv\Data\ApplicationInfo::class);
$this->application_info = $var;
return $this;
}
/**
* Configured key bindings. Empty in the reference sample.
*
* Generated from protobuf field repeated .rv.data.KeyMappingsDocument.Mapping mappings = 2;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getMappings()
{
return $this->mappings;
}
/**
* Configured key bindings. Empty in the reference sample.
*
* Generated from protobuf field repeated .rv.data.KeyMappingsDocument.Mapping mappings = 2;
* @param array<\Rv\Data\KeyMappingsDocument\Mapping>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setMappings($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Rv\Data\KeyMappingsDocument\Mapping::class);
$this->mappings = $arr;
return $this;
}
}