priority = $priority; } /** * @return self::PRIORITY_* */ public function getPriority() { return $this->priority; } /** * Explanation of the warning generated. * * @param string $text */ public function setText($text) { $this->text = $text; } /** * @return string */ public function getText() { return $this->text; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleDevtoolsCloudbuildV1Warning::class, 'Google_Service_CloudRun_GoogleDevtoolsCloudbuildV1Warning');