87 lines
1.8 KiB
PHP
87 lines
1.8 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: proCore.proto
|
|
|
|
namespace Rv\Data\TextSegmentRequest;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.TextSegmentRequest.Segment</code>
|
|
*/
|
|
class Segment extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>uint32 index = 1;</code>
|
|
*/
|
|
protected $index = 0;
|
|
/**
|
|
* Generated from protobuf field <code>double size = 2;</code>
|
|
*/
|
|
protected $size = 0.0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type int $index
|
|
* @type float $size
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\ProCore::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>uint32 index = 1;</code>
|
|
* @return int
|
|
*/
|
|
public function getIndex()
|
|
{
|
|
return $this->index;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>uint32 index = 1;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setIndex($var)
|
|
{
|
|
GPBUtil::checkUint32($var);
|
|
$this->index = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>double size = 2;</code>
|
|
* @return float
|
|
*/
|
|
public function getSize()
|
|
{
|
|
return $this->size;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>double size = 2;</code>
|
|
* @param float $var
|
|
* @return $this
|
|
*/
|
|
public function setSize($var)
|
|
{
|
|
GPBUtil::checkDouble($var);
|
|
$this->size = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|