description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * Textual representation of an expression in Common Expression Language * syntax. * * @param string $expression */ public function setExpression($expression) { $this->expression = $expression; } /** * @return string */ public function getExpression() { return $this->expression; } /** * Optional. String indicating the location of the expression for error * reporting, e.g. a file name and a position in the file. * * @param string $location */ public function setLocation($location) { $this->location = $location; } /** * @return string */ public function getLocation() { return $this->location; } /** * Optional. Title for the expression, i.e. a short string describing its * purpose. This can be used e.g. in UIs which allow to enter the expression. * * @param string $title */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Expr::class, 'Google_Service_SecureSourceManager_Expr');