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

114 lines
2.7 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: proscreen.proto
namespace Rv\Data\ProPresenterScreen;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.ProPresenterScreen.CombinedArrangement</code>
*/
class CombinedArrangement extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>repeated .rv.data.Screen screens = 1;</code>
*/
private $screens;
/**
* Generated from protobuf field <code>uint32 rows = 2;</code>
*/
protected $rows = 0;
/**
* Generated from protobuf field <code>uint32 columns = 3;</code>
*/
protected $columns = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type array<\Rv\Data\Screen>|\Google\Protobuf\Internal\RepeatedField $screens
* @type int $rows
* @type int $columns
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Proscreen::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>repeated .rv.data.Screen screens = 1;</code>
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getScreens()
{
return $this->screens;
}
/**
* Generated from protobuf field <code>repeated .rv.data.Screen screens = 1;</code>
* @param array<\Rv\Data\Screen>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setScreens($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Rv\Data\Screen::class);
$this->screens = $arr;
return $this;
}
/**
* Generated from protobuf field <code>uint32 rows = 2;</code>
* @return int
*/
public function getRows()
{
return $this->rows;
}
/**
* Generated from protobuf field <code>uint32 rows = 2;</code>
* @param int $var
* @return $this
*/
public function setRows($var)
{
GPBUtil::checkUint32($var);
$this->rows = $var;
return $this;
}
/**
* Generated from protobuf field <code>uint32 columns = 3;</code>
* @return int
*/
public function getColumns()
{
return $this->columns;
}
/**
* Generated from protobuf field <code>uint32 columns = 3;</code>
* @param int $var
* @return $this
*/
public function setColumns($var)
{
GPBUtil::checkUint32($var);
$this->columns = $var;
return $this;
}
}