/
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 Parse method. * * Generated from protobuf message <code>google.api.expr.v1alpha1.ParseResponse</code> */ class ParseResponse extends \Google\Protobuf\Internal\Message { /** * The parsed representation, or unset if parsing failed. * * Generated from protobuf field <code>.google.api.expr.v1alpha1.ParsedExpr parsed_expr = 1;</code> */ private $parsed_expr = null; /** * Any number of issues with [StatusDetails][] as the details. * * 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\ParsedExpr $parsed_expr * The parsed representation, or unset if parsing failed. * @type \Google\Rpc\Status[]|\Google\Protobuf\Internal\RepeatedField $issues * Any number of issues with [StatusDetails][] as the details. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Api\Expr\V1Alpha1\ConformanceService::initOnce(); parent::__construct($data); } /** * The parsed representation, or unset if parsing failed. * * 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->parsed_expr; } /** * The parsed representation, or unset if parsing failed. * * 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->parsed_expr = $var; return $this; } /** * Any number of issues with [StatusDetails][] as the details. * * 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. * * 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; } }