message = $message; } /** * @return string */ public function getMessage() { return $this->message; } /** * Output only. The reason for the error. This is a constant value in * UPPER_SNAKE_CASE that identifies the cause of the error. * * @param string $reason */ public function setReason($reason) { $this->reason = $reason; } /** * @return string */ public function getReason() { return $this->reason; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MatrixErrorDetail::class, 'Google_Service_Testing_MatrixErrorDetail');