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

168 lines
3.7 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: proClockSource.proto
namespace Rv\Data;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.ProClockSource</code>
*/
class ProClockSource extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>string uuid = 1;</code>
*/
protected $uuid = '';
/**
* Generated from protobuf field <code>string name = 2;</code>
*/
protected $name = '';
/**
* Generated from protobuf field <code>bool connected = 3;</code>
*/
protected $connected = false;
/**
* Generated from protobuf field <code>bool active = 4;</code>
*/
protected $active = false;
/**
* Generated from protobuf field <code>.rv.data.ProClockSource.Type type = 5;</code>
*/
protected $type = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $uuid
* @type string $name
* @type bool $connected
* @type bool $active
* @type int $type
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProClockSource::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>string uuid = 1;</code>
* @return string
*/
public function getUuid()
{
return $this->uuid;
}
/**
* Generated from protobuf field <code>string uuid = 1;</code>
* @param string $var
* @return $this
*/
public function setUuid($var)
{
GPBUtil::checkString($var, True);
$this->uuid = $var;
return $this;
}
/**
* Generated from protobuf field <code>string name = 2;</code>
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Generated from protobuf field <code>string name = 2;</code>
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool connected = 3;</code>
* @return bool
*/
public function getConnected()
{
return $this->connected;
}
/**
* Generated from protobuf field <code>bool connected = 3;</code>
* @param bool $var
* @return $this
*/
public function setConnected($var)
{
GPBUtil::checkBool($var);
$this->connected = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool active = 4;</code>
* @return bool
*/
public function getActive()
{
return $this->active;
}
/**
* Generated from protobuf field <code>bool active = 4;</code>
* @param bool $var
* @return $this
*/
public function setActive($var)
{
GPBUtil::checkBool($var);
$this->active = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.ProClockSource.Type type = 5;</code>
* @return int
*/
public function getType()
{
return $this->type;
}
/**
* Generated from protobuf field <code>.rv.data.ProClockSource.Type type = 5;</code>
* @param int $var
* @return $this
*/
public function setType($var)
{
GPBUtil::checkEnum($var, \Rv\Data\ProClockSource\Type::class);
$this->type = $var;
return $this;
}
}