/
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; /** * Response message for the Eval method. * * Generated from protobuf message <code>google.api.expr.v1alpha1.EvalResponse</code> */ class EvalResponse extends \Google\Protobuf\Internal\Message { /** * The execution result, or unset if execution couldn't start. * * Generated from protobuf field <code>.google.api.expr.v1alpha1.ExprValue result = 1;</code> */ private $result = null; /** * Any number of issues with [StatusDetails][] as the details. * Note that CEL execution errors are reified into [ExprValue][google.api.expr.v1alpha1.ExprValue]. * Nevertheless, we'll allow out-of-band issues to be raised, * which also makes the replies more regular. * * Generated from protobuf field <code>repeated .google.rpc.Status issues = 2;</code> */ private $issues; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Google\Api\Expr\V1alpha1\ExprValue $result * The execution result, or unset if execution couldn't start. * @type \Google\Rpc\Status[]|\Google\Protobuf\Internal\RepeatedField $issues * Any number of issues with [StatusDetails][] as the details. * Note that CEL execution errors are reified into [ExprValue][google.api.expr.v1alpha1.ExprValue]. * Nevertheless, we'll allow out-of-band issues to be raised, * which also makes the replies more regular. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Api\Expr\V1Alpha1\ConformanceService::initOnce(); parent::__construct($data); } /** * The execution result, or unset if execution couldn't start. * * Generated from protobuf field <code>.google.api.expr.v1alpha1.ExprValue result = 1;</code> * @return \Google\Api\Expr\V1alpha1\ExprValue */ public function getResult() { return $this->result; } /** * The execution result, or unset if execution couldn't start. * * Generated from protobuf field <code>.google.api.expr.v1alpha1.ExprValue result = 1;</code> * @param \Google\Api\Expr\V1alpha1\ExprValue $var * @return $this */ public function setResult($var) { GPBUtil::checkMessage($var, \Google\Api\Expr\V1alpha1\ExprValue::class); $this->result = $var; return $this; } /** * Any number of issues with [StatusDetails][] as the details. * Note that CEL execution errors are reified into [ExprValue][google.api.expr.v1alpha1.ExprValue]. * Nevertheless, we'll allow out-of-band issues to be raised, * which also makes the replies more regular. * * Generated from protobuf field <code>repeated .google.rpc.Status issues = 2;</code> * @return \Google\Protobuf\Internal\RepeatedField */ public function getIssues() { return $this->issues; } /** * Any number of issues with [StatusDetails][] as the details. * Note that CEL execution errors are reified into [ExprValue][google.api.expr.v1alpha1.ExprValue]. * Nevertheless, we'll allow out-of-band issues to be raised, * which also makes the replies more regular. * * Generated from protobuf field <code>repeated .google.rpc.Status issues = 2;</code> * @param \Google\Rpc\Status[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setIssues($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Rpc\Status::class); $this->issues = $arr; return $this; } }