propresenter-php/php/generated/Rv/Data/Slide/Element/DataLink/FileFeed.php
2026-03-01 16:12:17 +01:00

70 lines
1.5 KiB
PHP

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