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: intRange.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.IntRange</code>
|
|
*/
|
|
class IntRange extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>int32 start = 1;</code>
|
|
*/
|
|
protected $start = 0;
|
|
/**
|
|
* Generated from protobuf field <code>int32 end = 2;</code>
|
|
*/
|
|
protected $end = 0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type int $start
|
|
* @type int $end
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\IntRange::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 start = 1;</code>
|
|
* @return int
|
|
*/
|
|
public function getStart()
|
|
{
|
|
return $this->start;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 start = 1;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setStart($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->start = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 end = 2;</code>
|
|
* @return int
|
|
*/
|
|
public function getEnd()
|
|
{
|
|
return $this->end;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 end = 2;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setEnd($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->end = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|