description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * Freeform details section of the audit. * * @param array[] $details */ public function setDetails($details) { $this->details = $details; } /** * @return array[] */ public function getDetails() { return $this->details; } /** * The value that should be displayed on the UI for this audit. * * @param string $displayValue */ public function setDisplayValue($displayValue) { $this->displayValue = $displayValue; } /** * @return string */ public function getDisplayValue() { return $this->displayValue; } /** * An error message from a thrown error inside the audit. * * @param string $errorMessage */ public function setErrorMessage($errorMessage) { $this->errorMessage = $errorMessage; } /** * @return string */ public function getErrorMessage() { return $this->errorMessage; } /** * An explanation of the errors in the audit. * * @param string $explanation */ public function setExplanation($explanation) { $this->explanation = $explanation; } /** * @return string */ public function getExplanation() { return $this->explanation; } /** * The audit's id. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * The metric savings of the audit. * * @param MetricSavings $metricSavings */ public function setMetricSavings(MetricSavings $metricSavings) { $this->metricSavings = $metricSavings; } /** * @return MetricSavings */ public function getMetricSavings() { return $this->metricSavings; } /** * The unit of the numeric_value field. Used to format the numeric value for * display. * * @param string $numericUnit */ public function setNumericUnit($numericUnit) { $this->numericUnit = $numericUnit; } /** * @return string */ public function getNumericUnit() { return $this->numericUnit; } public function setNumericValue($numericValue) { $this->numericValue = $numericValue; } public function getNumericValue() { return $this->numericValue; } /** * The score of the audit, can be null. * * @param array $score */ public function setScore($score) { $this->score = $score; } /** * @return array */ public function getScore() { return $this->score; } /** * The enumerated score display mode. * * @param string $scoreDisplayMode */ public function setScoreDisplayMode($scoreDisplayMode) { $this->scoreDisplayMode = $scoreDisplayMode; } /** * @return string */ public function getScoreDisplayMode() { return $this->scoreDisplayMode; } /** * The human readable title. * * @param string $title */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } /** * Possible warnings that occurred in the audit, can be null. * * @param array $warnings */ public function setWarnings($warnings) { $this->warnings = $warnings; } /** * @return array */ public function getWarnings() { return $this->warnings; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LighthouseAuditResultV5::class, 'Google_Service_PagespeedInsights_LighthouseAuditResultV5');