propresenter-php/generated/Rv/Data/API_v1_Media_Request/FocusMessage.php
Thorsten Bus 22ba4aff7d refactor: make repo Composer-compatible by moving php/ to root and ref/ to doc/reference_samples
- Move src/, tests/, bin/, generated/, proto/, composer.json, composer.lock, phpunit.xml from php/ to repo root
- Move ref/ to doc/reference_samples/ for better organization
- Remove vendor/ from git tracking (now properly gitignored)
- Update all test file paths (dirname adjustments and ref/ -> doc/reference_samples/)
- Update all documentation paths (AGENTS.md, doc/*.md)
- Remove php.bak/ directory
- All 252 tests pass
2026-03-30 13:26:29 +02:00

177 lines
4.6 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: proApiV1Media.proto
namespace Rv\Data\API_v1_Media_Request;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.API_v1_Media_Request.FocusMessage</code>
*/
class FocusMessage extends \Google\Protobuf\Internal\Message
{
protected $Playlist;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\API_v1_Media_Request\EmptyMessage $next
* @type \Rv\Data\API_v1_Media_Request\EmptyMessage $previous
* @type \Rv\Data\API_v1_Media_Request\EmptyMessage $active
* @type \Google\Protobuf\StringValue $id
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApiV1Media::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>.rv.data.API_v1_Media_Request.EmptyMessage next = 1;</code>
* @return \Rv\Data\API_v1_Media_Request\EmptyMessage|null
*/
public function getNext()
{
return $this->readOneof(1);
}
public function hasNext()
{
return $this->hasOneof(1);
}
/**
* Generated from protobuf field <code>.rv.data.API_v1_Media_Request.EmptyMessage next = 1;</code>
* @param \Rv\Data\API_v1_Media_Request\EmptyMessage $var
* @return $this
*/
public function setNext($var)
{
GPBUtil::checkMessage($var, \Rv\Data\API_v1_Media_Request\EmptyMessage::class);
$this->writeOneof(1, $var);
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.API_v1_Media_Request.EmptyMessage previous = 2;</code>
* @return \Rv\Data\API_v1_Media_Request\EmptyMessage|null
*/
public function getPrevious()
{
return $this->readOneof(2);
}
public function hasPrevious()
{
return $this->hasOneof(2);
}
/**
* Generated from protobuf field <code>.rv.data.API_v1_Media_Request.EmptyMessage previous = 2;</code>
* @param \Rv\Data\API_v1_Media_Request\EmptyMessage $var
* @return $this
*/
public function setPrevious($var)
{
GPBUtil::checkMessage($var, \Rv\Data\API_v1_Media_Request\EmptyMessage::class);
$this->writeOneof(2, $var);
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.API_v1_Media_Request.EmptyMessage active = 3;</code>
* @return \Rv\Data\API_v1_Media_Request\EmptyMessage|null
*/
public function getActive()
{
return $this->readOneof(3);
}
public function hasActive()
{
return $this->hasOneof(3);
}
/**
* Generated from protobuf field <code>.rv.data.API_v1_Media_Request.EmptyMessage active = 3;</code>
* @param \Rv\Data\API_v1_Media_Request\EmptyMessage $var
* @return $this
*/
public function setActive($var)
{
GPBUtil::checkMessage($var, \Rv\Data\API_v1_Media_Request\EmptyMessage::class);
$this->writeOneof(3, $var);
return $this;
}
/**
* Generated from protobuf field <code>.google.protobuf.StringValue id = 4;</code>
* @return \Google\Protobuf\StringValue|null
*/
public function getId()
{
return $this->readOneof(4);
}
public function hasId()
{
return $this->hasOneof(4);
}
/**
* Returns the unboxed value from <code>getId()</code>
* Generated from protobuf field <code>.google.protobuf.StringValue id = 4;</code>
* @return string|null
*/
public function getIdUnwrapped()
{
return $this->readWrapperValue("id");
}
/**
* Generated from protobuf field <code>.google.protobuf.StringValue id = 4;</code>
* @param \Google\Protobuf\StringValue $var
* @return $this
*/
public function setId($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\StringValue::class);
$this->writeOneof(4, $var);
return $this;
}
/**
* Sets the field by wrapping a primitive type in a Google\Protobuf\StringValue object.
* Generated from protobuf field <code>.google.protobuf.StringValue id = 4;</code>
* @param string|null $var
* @return $this
*/
public function setIdUnwrapped($var)
{
$this->writeWrapperValue("id", $var);
return $this;}
/**
* @return string
*/
public function getPlaylist()
{
return $this->whichOneof("Playlist");
}
}