/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
vendor
/
google
/
common-protos
/
src
/
Api
/
Expr
/
V1alpha1
/
Upload File
HOME
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/api/expr/v1alpha1/conformance_service.proto namespace Google\Api\Expr\V1alpha1; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Request message for the Eval method. * * Generated from protobuf message <code>google.api.expr.v1alpha1.EvalRequest</code> */ class EvalRequest extends \Google\Protobuf\Internal\Message { /** * Bindings for the external variables. The types SHOULD be compatible * with the type environment in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked. * * Generated from protobuf field <code>map<string, .google.api.expr.v1alpha1.ExprValue> bindings = 3;</code> */ private $bindings; /** * SHOULD be the same container as used in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked. * * Generated from protobuf field <code>string container = 4;</code> */ private $container = ''; protected $expr_kind; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Google\Api\Expr\V1alpha1\ParsedExpr $parsed_expr * Evaluate based on the parsed representation. * @type \Google\Api\Expr\V1alpha1\CheckedExpr $checked_expr * Evaluate based on the checked representation. * @type array|\Google\Protobuf\Internal\MapField $bindings * Bindings for the external variables. The types SHOULD be compatible * with the type environment in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked. * @type string $container * SHOULD be the same container as used in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Api\Expr\V1Alpha1\ConformanceService::initOnce(); parent::__construct($data); } /** * Evaluate based on the parsed representation. * * Generated from protobuf field <code>.google.api.expr.v1alpha1.ParsedExpr parsed_expr = 1;</code> * @return \Google\Api\Expr\V1alpha1\ParsedExpr */ public function getParsedExpr() { return $this->readOneof(1); } /** * Evaluate based on the parsed representation. * * Generated from protobuf field <code>.google.api.expr.v1alpha1.ParsedExpr parsed_expr = 1;</code> * @param \Google\Api\Expr\V1alpha1\ParsedExpr $var * @return $this */ public function setParsedExpr($var) { GPBUtil::checkMessage($var, \Google\Api\Expr\V1alpha1\ParsedExpr::class); $this->writeOneof(1, $var); return $this; } /** * Evaluate based on the checked representation. * * Generated from protobuf field <code>.google.api.expr.v1alpha1.CheckedExpr checked_expr = 2;</code> * @return \Google\Api\Expr\V1alpha1\CheckedExpr */ public function getCheckedExpr() { return $this->readOneof(2); } /** * Evaluate based on the checked representation. * * Generated from protobuf field <code>.google.api.expr.v1alpha1.CheckedExpr checked_expr = 2;</code> * @param \Google\Api\Expr\V1alpha1\CheckedExpr $var * @return $this */ public function setCheckedExpr($var) { GPBUtil::checkMessage($var, \Google\Api\Expr\V1alpha1\CheckedExpr::class); $this->writeOneof(2, $var); return $this; } /** * Bindings for the external variables. The types SHOULD be compatible * with the type environment in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked. * * Generated from protobuf field <code>map<string, .google.api.expr.v1alpha1.ExprValue> bindings = 3;</code> * @return \Google\Protobuf\Internal\MapField */ public function getBindings() { return $this->bindings; } /** * Bindings for the external variables. The types SHOULD be compatible * with the type environment in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked. * * Generated from protobuf field <code>map<string, .google.api.expr.v1alpha1.ExprValue> bindings = 3;</code> * @param array|\Google\Protobuf\Internal\MapField $var * @return $this */ public function setBindings($var) { $arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Api\Expr\V1alpha1\ExprValue::class); $this->bindings = $arr; return $this; } /** * SHOULD be the same container as used in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked. * * Generated from protobuf field <code>string container = 4;</code> * @return string */ public function getContainer() { return $this->container; } /** * SHOULD be the same container as used in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked. * * Generated from protobuf field <code>string container = 4;</code> * @param string $var * @return $this */ public function setContainer($var) { GPBUtil::checkString($var, True); $this->container = $var; return $this; } /** * @return string */ public function getExprKind() { return $this->whichOneof("expr_kind"); } }