rv.data.ProPresenterScreen.CombinedArrangement */ class CombinedArrangement extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field repeated .rv.data.Screen screens = 1; */ private $screens; /** * Generated from protobuf field uint32 rows = 2; */ protected $rows = 0; /** * Generated from protobuf field uint32 columns = 3; */ 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 repeated .rv.data.Screen screens = 1; * @return \Google\Protobuf\Internal\RepeatedField */ public function getScreens() { return $this->screens; } /** * Generated from protobuf field repeated .rv.data.Screen screens = 1; * @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 uint32 rows = 2; * @return int */ public function getRows() { return $this->rows; } /** * Generated from protobuf field uint32 rows = 2; * @param int $var * @return $this */ public function setRows($var) { GPBUtil::checkUint32($var); $this->rows = $var; return $this; } /** * Generated from protobuf field uint32 columns = 3; * @return int */ public function getColumns() { return $this->columns; } /** * Generated from protobuf field uint32 columns = 3; * @param int $var * @return $this */ public function setColumns($var) { GPBUtil::checkUint32($var); $this->columns = $var; return $this; } }