source: vendor/google/apiclient-services/src/PagespeedInsights/LighthouseAuditResultV5.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 12 days ago

Upload new project files

  • Property mode set to 100644
File size: 4.3 KB
Line 
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 protected $metricSavingsType = MetricSavings::class;
47 protected $metricSavingsDataType = '';
48 /**
49 * @var string
50 */
51 public $numericUnit;
52 public $numericValue;
53 /**
54 * @var array
55 */
56 public $score;
57 /**
58 * @var string
59 */
60 public $scoreDisplayMode;
61 /**
62 * @var string
63 */
64 public $title;
65 /**
66 * @var array
67 */
68 public $warnings;
69
70 /**
71 * @param string
72 */
73 public function setDescription($description)
74 {
75 $this->description = $description;
76 }
77 /**
78 * @return string
79 */
80 public function getDescription()
81 {
82 return $this->description;
83 }
84 /**
85 * @param array[]
86 */
87 public function setDetails($details)
88 {
89 $this->details = $details;
90 }
91 /**
92 * @return array[]
93 */
94 public function getDetails()
95 {
96 return $this->details;
97 }
98 /**
99 * @param string
100 */
101 public function setDisplayValue($displayValue)
102 {
103 $this->displayValue = $displayValue;
104 }
105 /**
106 * @return string
107 */
108 public function getDisplayValue()
109 {
110 return $this->displayValue;
111 }
112 /**
113 * @param string
114 */
115 public function setErrorMessage($errorMessage)
116 {
117 $this->errorMessage = $errorMessage;
118 }
119 /**
120 * @return string
121 */
122 public function getErrorMessage()
123 {
124 return $this->errorMessage;
125 }
126 /**
127 * @param string
128 */
129 public function setExplanation($explanation)
130 {
131 $this->explanation = $explanation;
132 }
133 /**
134 * @return string
135 */
136 public function getExplanation()
137 {
138 return $this->explanation;
139 }
140 /**
141 * @param string
142 */
143 public function setId($id)
144 {
145 $this->id = $id;
146 }
147 /**
148 * @return string
149 */
150 public function getId()
151 {
152 return $this->id;
153 }
154 /**
155 * @param MetricSavings
156 */
157 public function setMetricSavings(MetricSavings $metricSavings)
158 {
159 $this->metricSavings = $metricSavings;
160 }
161 /**
162 * @return MetricSavings
163 */
164 public function getMetricSavings()
165 {
166 return $this->metricSavings;
167 }
168 /**
169 * @param string
170 */
171 public function setNumericUnit($numericUnit)
172 {
173 $this->numericUnit = $numericUnit;
174 }
175 /**
176 * @return string
177 */
178 public function getNumericUnit()
179 {
180 return $this->numericUnit;
181 }
182 public function setNumericValue($numericValue)
183 {
184 $this->numericValue = $numericValue;
185 }
186 public function getNumericValue()
187 {
188 return $this->numericValue;
189 }
190 /**
191 * @param array
192 */
193 public function setScore($score)
194 {
195 $this->score = $score;
196 }
197 /**
198 * @return array
199 */
200 public function getScore()
201 {
202 return $this->score;
203 }
204 /**
205 * @param string
206 */
207 public function setScoreDisplayMode($scoreDisplayMode)
208 {
209 $this->scoreDisplayMode = $scoreDisplayMode;
210 }
211 /**
212 * @return string
213 */
214 public function getScoreDisplayMode()
215 {
216 return $this->scoreDisplayMode;
217 }
218 /**
219 * @param string
220 */
221 public function setTitle($title)
222 {
223 $this->title = $title;
224 }
225 /**
226 * @return string
227 */
228 public function getTitle()
229 {
230 return $this->title;
231 }
232 /**
233 * @param array
234 */
235 public function setWarnings($warnings)
236 {
237 $this->warnings = $warnings;
238 }
239 /**
240 * @return array
241 */
242 public function getWarnings()
243 {
244 return $this->warnings;
245 }
246}
247
248// Adding a class alias for backwards compatibility with the previous class name.
249class_alias(LighthouseAuditResultV5::class, 'Google_Service_PagespeedInsights_LighthouseAuditResultV5');
Note: See TracBrowser for help on using the repository browser.