/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
vendor
/
google
/
common-protos
/
src
/
Api
/
Expr
/
V1beta1
/
Upload File
HOME
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/api/expr/v1beta1/eval.proto namespace Google\Api\Expr\V1beta1; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * A reference to an expression id. * * Generated from protobuf message <code>google.api.expr.v1beta1.IdRef</code> */ class IdRef extends \Google\Protobuf\Internal\Message { /** * The expression id. * * Generated from protobuf field <code>int32 id = 1;</code> */ private $id = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $id * The expression id. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Api\Expr\V1Beta1\PBEval::initOnce(); parent::__construct($data); } /** * The expression id. * * Generated from protobuf field <code>int32 id = 1;</code> * @return int */ public function getId() { return $this->id; } /** * The expression id. * * Generated from protobuf field <code>int32 id = 1;</code> * @param int $var * @return $this */ public function setId($var) { GPBUtil::checkInt32($var); $this->id = $var; return $this; } }