1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\PagespeedInsights;
19
20class LighthouseAuditResultV5 extends \Google\Model
21{
22  /**
23   * @var string
24   */
25  public $description;
26  /**
27   * @var array[]
28   */
29  public $details;
30  /**
31   * @var string
32   */
33  public $displayValue;
34  /**
35   * @var string
36   */
37  public $errorMessage;
38  /**
39   * @var string
40   */
41  public $explanation;
42  /**
43   * @var string
44   */
45  public $id;
46  /**
47   * @var string
48   */
49  public $numericUnit;
50  public $numericValue;
51  /**
52   * @var array
53   */
54  public $score;
55  /**
56   * @var string
57   */
58  public $scoreDisplayMode;
59  /**
60   * @var string
61   */
62  public $title;
63  /**
64   * @var array
65   */
66  public $warnings;
67
68  /**
69   * @param string
70   */
71  public function setDescription($description)
72  {
73    $this->description = $description;
74  }
75  /**
76   * @return string
77   */
78  public function getDescription()
79  {
80    return $this->description;
81  }
82  /**
83   * @param array[]
84   */
85  public function setDetails($details)
86  {
87    $this->details = $details;
88  }
89  /**
90   * @return array[]
91   */
92  public function getDetails()
93  {
94    return $this->details;
95  }
96  /**
97   * @param string
98   */
99  public function setDisplayValue($displayValue)
100  {
101    $this->displayValue = $displayValue;
102  }
103  /**
104   * @return string
105   */
106  public function getDisplayValue()
107  {
108    return $this->displayValue;
109  }
110  /**
111   * @param string
112   */
113  public function setErrorMessage($errorMessage)
114  {
115    $this->errorMessage = $errorMessage;
116  }
117  /**
118   * @return string
119   */
120  public function getErrorMessage()
121  {
122    return $this->errorMessage;
123  }
124  /**
125   * @param string
126   */
127  public function setExplanation($explanation)
128  {
129    $this->explanation = $explanation;
130  }
131  /**
132   * @return string
133   */
134  public function getExplanation()
135  {
136    return $this->explanation;
137  }
138  /**
139   * @param string
140   */
141  public function setId($id)
142  {
143    $this->id = $id;
144  }
145  /**
146   * @return string
147   */
148  public function getId()
149  {
150    return $this->id;
151  }
152  /**
153   * @param string
154   */
155  public function setNumericUnit($numericUnit)
156  {
157    $this->numericUnit = $numericUnit;
158  }
159  /**
160   * @return string
161   */
162  public function getNumericUnit()
163  {
164    return $this->numericUnit;
165  }
166  public function setNumericValue($numericValue)
167  {
168    $this->numericValue = $numericValue;
169  }
170  public function getNumericValue()
171  {
172    return $this->numericValue;
173  }
174  /**
175   * @param array
176   */
177  public function setScore($score)
178  {
179    $this->score = $score;
180  }
181  /**
182   * @return array
183   */
184  public function getScore()
185  {
186    return $this->score;
187  }
188  /**
189   * @param string
190   */
191  public function setScoreDisplayMode($scoreDisplayMode)
192  {
193    $this->scoreDisplayMode = $scoreDisplayMode;
194  }
195  /**
196   * @return string
197   */
198  public function getScoreDisplayMode()
199  {
200    return $this->scoreDisplayMode;
201  }
202  /**
203   * @param string
204   */
205  public function setTitle($title)
206  {
207    $this->title = $title;
208  }
209  /**
210   * @return string
211   */
212  public function getTitle()
213  {
214    return $this->title;
215  }
216  /**
217   * @param array
218   */
219  public function setWarnings($warnings)
220  {
221    $this->warnings = $warnings;
222  }
223  /**
224   * @return array
225   */
226  public function getWarnings()
227  {
228    return $this->warnings;
229  }
230}
231
232// Adding a class alias for backwards compatibility with the previous class name.
233class_alias(LighthouseAuditResultV5::class, 'Google_Service_PagespeedInsights_LighthouseAuditResultV5');
234