propresenter-php/php/generated/Rv/Data/FileProperties/RemoteProperties.php
2026-03-01 16:12:17 +01:00

70 lines
1.8 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: fileProperties.proto
namespace Rv\Data\FileProperties;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.FileProperties.RemoteProperties</code>
*/
class RemoteProperties extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>.rv.data.FileProperties.RemoteProperties.ProContent procontent = 1;</code>
*/
protected $procontent = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\FileProperties\RemoteProperties\ProContent $procontent
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\FileProperties::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>.rv.data.FileProperties.RemoteProperties.ProContent procontent = 1;</code>
* @return \Rv\Data\FileProperties\RemoteProperties\ProContent|null
*/
public function getProcontent()
{
return $this->procontent;
}
public function hasProcontent()
{
return isset($this->procontent);
}
public function clearProcontent()
{
unset($this->procontent);
}
/**
* Generated from protobuf field <code>.rv.data.FileProperties.RemoteProperties.ProContent procontent = 1;</code>
* @param \Rv\Data\FileProperties\RemoteProperties\ProContent $var
* @return $this
*/
public function setProcontent($var)
{
GPBUtil::checkMessage($var, \Rv\Data\FileProperties\RemoteProperties\ProContent::class);
$this->procontent = $var;
return $this;
}
}